Changeset 24271
- Timestamp:
- 10/24/19 15:44:18 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/hdf5/install.sh
r23435 r24271 2 2 set -eu 3 3 4 #Some cleanup 5 rm -rf src install hdf5-1.8.9 4 VER="1.8.9" 5 6 # Cleanup 7 rm -rf src install hdf5-${VER} 6 8 mkdir src install 7 9 8 # Download from ISSM server9 $ISSM_DIR/scripts/DownloadExternalPackage.sh 'https://issm.ess.uci.edu/files/externalpackages/hdf5-1.8.9.tar.gz' 'hdf5-1.8.9.tar.gz'10 # Download source 11 $ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/hdf5-${VER}.tar.gz" "hdf5-${VER}.tar.gz" 10 12 11 # Untar12 tar -zxvf hdf5- 1.8.9.tar.gz13 # Untar source 14 tar -zxvf hdf5-${VER}.tar.gz 13 15 14 # Move hdf5to src directory16 # Move source to src directory 15 17 rm -rf src/* 16 mv hdf5- 1.8.9/* src/17 rm -rf hdf5- 1.8.918 mv hdf5-${VER}/* src/ 19 rm -rf hdf5-${VER} 18 20 19 # This project uses C code with C++ style comment default C standard used by 20 # GNU's C compiler's default C standard does not support C++ style comments. 21 # As such, we need to specify a standard that does. 21 # This project uses C code with C++-style comments. As such, we need to specify 22 # a C standard that supports them. 22 23 export CFLAGS='-std=c99' 23 24 24 # Configure and compile25 # Configure, compile, and install 25 26 cd src 26 ./configure --prefix="$ISSM_DIR/externalpackages/hdf5/install" 27 ./configure \ 28 --prefix="$ISSM_DIR/externalpackages/hdf5/install" 29 27 30 if [ $# -eq 0 ]; then 28 31 make -
issm/trunk-jpl/jenkins/jenkins.sh
r24219 r24271 149 149 150 150 #install if requested or if previous install has not been successful 151 if [ "$ISSM_EXTERNALPACKAGES" == "yes" ] || [ ! -d ./install -a ! -d ./install-javascript ] || ([ -d ./install ] && [ ! "$(ls -A ./install)" ]) || ([ -d ./install-javascript ] && [ ! "$(ls -A ./install-javascript)" ]); then151 if [ "$ISSM_EXTERNALPACKAGES" == "yes" ] || [[ ! -d ./install && ! -d ./install-javascript ]]; then 152 152 echo "======================================================"; 153 153 echo " Installing $PACKAGENAME "; … … 353 353 # {{{ 354 354 if [ $PYTHON_TEST -eq 1 ]; then 355 #Launch all tests on different cpus356 export PYTHONPATH="$ISSM_DIR/src/m/dev"357 export PYTHONSTARTUP="${PYTHONPATH}/devpath.py"358 export PYTHONUNBUFFERED=1 #we don't want python to buffer otherwise issm.exe output is not captured359 for (( i=1;i<=$NUMCPUS_RUN;i++ ))360 do361 cd $ISSM_DIR/test/NightlyRun362 echo "--------------Running Python test for Rank $i---------------------"363 ./runme.py --output=nightly --rank=$i --numprocs=$NUMCPUS_RUN $PYTHON_NROPTIONS &> $ISSM_DIR/nightlylog/python_log$i.log &364 echo "--------------Running Python test for Rank $i---------------------"365 done366 367 # concatenate reports368 cd $ISSM_DIR/nightlylog/369 if [ -f python_log.log ]; then370 rm python_log.log371 fi372 373 for job in `jobs -p`374 do375 echo "Waiting on: $job"376 wait $job377 done378 379 for (( i=1;i<=$NUMCPUS_RUN;i++ ))380 do381 echo "This is the concatenation phase for rank: python_log$i.log"382 cat python_log$i.log >> python_log.log383 done355 #Launch all tests on different cpus 356 export PYTHONPATH="$ISSM_DIR/src/m/dev" 357 export PYTHONSTARTUP="${PYTHONPATH}/devpath.py" 358 export PYTHONUNBUFFERED=1 #we don't want python to buffer otherwise issm.exe output is not captured 359 for (( i=1;i<=$NUMCPUS_RUN;i++ )) 360 do 361 cd $ISSM_DIR/test/NightlyRun 362 echo "--------------Running Python test for Rank $i---------------------" 363 ./runme.py --output=nightly --rank=$i --numprocs=$NUMCPUS_RUN $PYTHON_NROPTIONS &> $ISSM_DIR/nightlylog/python_log$i.log & 364 echo "--------------Running Python test for Rank $i---------------------" 365 done 366 367 # concatenate reports 368 cd $ISSM_DIR/nightlylog/ 369 if [ -f python_log.log ]; then 370 rm python_log.log 371 fi 372 373 for job in `jobs -p` 374 do 375 echo "Waiting on: $job" 376 wait $job 377 done 378 379 for (( i=1;i<=$NUMCPUS_RUN;i++ )) 380 do 381 echo "This is the concatenation phase for rank: python_log$i.log" 382 cat python_log$i.log >> python_log.log 383 done 384 384 fi 385 385 # }}} … … 506 506 done 507 507 fi 508 508 509 if [ $PYTHON_TEST -eq 1 ]; then 509 510 #number tests: … … 517 518 juLog -test=PYTHON-$i -name=Failure -error=FAILURE awk "/starting:$i/{flag=1;next}/finished/{flag=0} flag{print}" python_log.log 518 519 done 519 fi 520 521 # Check that Python did not exit in error 522 pythonExitedInError=`grep -E "Traceback|bad interpreter" python_log.log | wc -l` 523 524 if [ $pythonExitedInError -ne 0 ] 525 then 526 echo "----------Python exited in error!----------"527 cat python_log.log528 echo "-----------End of python_log.log-----------" 529 530 # Clean up execution directory531 rm -rf $ISSM_DIR/execution/* 532 533 exit 1534 fi 535 536 # Python tests must have run and exited successfully (unless we have missed something) 537 echo "PYTHONEXITEDCORRECTLY" 520 521 # Check that Python did not exit in error 522 pythonExitedInError=`grep -E "Traceback|bad interpreter" python_log.log | wc -l` 523 524 if [ $pythonExitedInError -ne 0 ] 525 then 526 echo "----------Python exited in error!----------" 527 cat python_log.log 528 echo "-----------End of python_log.log-----------" 529 530 # Clean up execution directory 531 rm -rf $ISSM_DIR/execution/* 532 533 exit 1 534 fi 535 536 # Python tests must have run and exited successfully (unless we have missed something) 537 echo "PYTHONEXITEDCORRECTLY" 538 fi 538 539 539 540 if [ $EXAMPLES_TEST -eq 1 ];
Note:
See TracChangeset
for help on using the changeset viewer.