Changeset 25977
- Timestamp:
- 02/03/21 21:00:43 (4 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/shell2junit/install.sh
r16629 r25977 3 3 4 4 5 # Some cleanup6 rm -rf install 7 mkdir install 5 ## Constants 6 # 7 VER="1.0.0" 8 8 9 cp patch/sh2ju.sh install/ 9 PREFIX="${ISSM_DIR}/externalpackages/shell2junit/install" # Set to location where external package should be installed 10 11 # Cleanup 12 rm -rf ${PREFIX} 13 mkdir -p ${PREFIX}/bin 14 15 # Download source 16 $ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/shell2junit-${VER}.zip" "shell2junit-${VER}.zip" 17 18 # Unpack source 19 unzip -q shell2junit-${VER}.zip 20 21 # Install 22 mv shell2junit-${VER}/sh2ju.sh ${PREFIX}/bin 23 24 # Cleanup 25 rm -rf shell2junit-${VER} -
issm/trunk-jpl/jenkins/jenkins.sh
r25966 r25977 432 432 #{{{ 433 433 cd $ISSM_DIR/nightlylog/ 434 source $ISSM_DIR/externalpackages/shell2junit/install/ sh2ju.sh434 source $ISSM_DIR/externalpackages/shell2junit/install/bin/sh2ju.sh 435 435 juLogClean 436 436 … … 442 442 #look through numtests: 443 443 for i in `echo $testlist`; do 444 juLog -test=MATLAB-$i -name=Error -error=ERROR awk "/ starting:$i/{flag=1;next}/finished/{flag=0} flag{print}" matlab_log.log445 juLog -test=MATLAB-$i -name=Failure -error=FAILURE awk "/ starting:$i/{flag=1;next}/finished/{flag=0} flag{print}" matlab_log.log444 juLog -test=MATLAB-$i -name=Error -error=ERROR awk "/^starting:${i}$/{flag=1;next}/^finished:${i}$/{flag=0} flag{print}" matlab_log.log 445 juLog -test=MATLAB-$i -name=Failure -error=FAILURE awk "/^starting:${i}$/{flag=1;next}/^finished:${i}$/{flag=0} flag{print}" matlab_log.log 446 446 done 447 447 … … 468 468 #look through numtests: 469 469 for i in `echo $testlist`; do 470 juLog -test=PYTHON-$i -name=Error -error=ERROR awk "/ starting:$i/{flag=1;next}/finished/{flag=0} flag{print}" python_log.log471 juLog -test=PYTHON-$i -name=Failure -error=FAILURE awk "/ starting:$i/{flag=1;next}/finished/{flag=0} flag{print}" python_log.log470 juLog -test=PYTHON-$i -name=Error -error=ERROR awk "/^starting:${i}$/{flag=1;next}/^finished:${i}$/{flag=0} flag{print}" python_log.log 471 juLog -test=PYTHON-$i -name=Failure -error=FAILURE awk "/^starting:${i}$/{flag=1;next}/^finished:${i}$/{flag=0} flag{print}" python_log.log 472 472 done 473 473 … … 495 495 496 496 for i in `echo $testlist`; do 497 juLog -test=Example-$i -name=Error -error=ERROR awk "/ starting: $i/{flag=1;next}/finished: $i/{flag=0} flag{print}" matlab_log_examples.log498 juLog -test=Example-$i -name=Failure -error=FAILURE awk "/ starting: $i/{flag=1;next}/finished: $i/{flag=0} flag{print}" matlab_log_examples.log497 juLog -test=Example-$i -name=Error -error=ERROR awk "/^starting: ${i}$/{flag=1;next}/^finished: ${i}$/{flag=0} flag{print}" matlab_log_examples.log 498 juLog -test=Example-$i -name=Failure -error=FAILURE awk "/^starting: ${i}$/{flag=1;next}/^finished: ${i}$/{flag=0} flag{print}" matlab_log_examples.log 499 499 done 500 500
Note:
See TracChangeset
for help on using the changeset viewer.