Changeset 24700
- Timestamp:
- 04/08/20 09:42:53 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-with_dakota.sh
r24695 r24700 42 42 fi 43 43 44 # Run tests45 echo "Running tests"46 cd ${ISSM_DIR}/test/NightlyRun44 # # Run tests 45 # echo "Running tests" 46 # cd ${ISSM_DIR}/test/NightlyRun 47 47 48 # Check that MATLAB tests run49 echo "Running MATLAB tests"48 # # Check that MATLAB tests run 49 # echo "Running MATLAB tests" 50 50 51 rm matlab.log 2> /dev/null51 # rm matlab.log 2> /dev/null 52 52 53 # Run MATLAB tests redirecting output to logfile and suppressing output to console54 ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log &> /dev/null53 # # Run MATLAB tests redirecting output to logfile and suppressing output to console 54 # ${MATLAB_PATH}/bin/matlab -nojvm -nosplash -r "try, addpath ${ISSM_DIR}/bin ${ISSM_DIR}/lib; runme(${MATLAB_NROPTIONS}); exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log &> /dev/null 55 55 56 # Check that MATLAB did not exit in error57 matlabExitCode=`echo $?`58 matlabExitedInError=`grep -E "Activation cannot proceed|license" matlab.log | wc -l`56 # # Check that MATLAB did not exit in error 57 # matlabExitCode=`echo $?` 58 # matlabExitedInError=`grep -E "Activation cannot proceed|license" matlab.log | wc -l` 59 59 60 if [[ ${matlabExitCode} -ne 0 || ${matlabExitedInError} -ne 0 ]]; then61 echo "----------MATLAB exited in error!----------"62 cat matlab.log63 echo "-----------End of matlab.log-----------"60 # if [[ ${matlabExitCode} -ne 0 || ${matlabExitedInError} -ne 0 ]]; then 61 # echo "----------MATLAB exited in error!----------" 62 # cat matlab.log 63 # echo "-----------End of matlab.log-----------" 64 64 65 # Clean up execution directory66 rm -rf ${ISSM_DIR}/execution/*65 # # Clean up execution directory 66 # rm -rf ${ISSM_DIR}/execution/* 67 67 68 exit 169 fi68 # exit 1 69 # fi 70 70 71 # Check that all MATLAB tests passed72 numMatlabTestsFailed=`cat matlab.log | grep -c -e "FAILED|ERROR"`71 # # Check that all MATLAB tests passed 72 # numMatlabTestsFailed=`cat matlab.log | grep -c -e "FAILED|ERROR"` 73 73 74 if [[ ${numMatlabTestsFailed} -ne 0 ]]; then75 echo "One or more MATLAB tests FAILED"76 exit 1;77 else78 echo "All MATLAB tests PASSED"79 fi74 # if [[ ${numMatlabTestsFailed} -ne 0 ]]; then 75 # echo "One or more MATLAB tests FAILED" 76 # exit 1; 77 # else 78 # echo "All MATLAB tests PASSED" 79 # fi 80 80 81 # Check that Python tests run82 echo "Running Python tests"81 # # Check that Python tests run 82 # echo "Running Python tests" 83 83 84 export PATH="${PATH}:${ISSM_DIR}/bin"85 export PYTHONPATH="${ISSM_DIR}/src/m/dev"86 export PYTHONSTARTUP="${PYTHONPATH}/devpath.py"87 export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured84 # export PATH="${PATH}:${ISSM_DIR}/bin" 85 # export PYTHONPATH="${ISSM_DIR}/src/m/dev" 86 # export PYTHONSTARTUP="${PYTHONPATH}/devpath.py" 87 # export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured 88 88 89 rm python.log 2> /dev/null90 ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&189 # rm python.log 2> /dev/null 90 # ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1 91 91 92 # Check that Python did not exit in error93 pythonExitCode=`echo $?`94 pythonExitedInError=`grep -E "Error|Traceback|bad interpreter" python.log | wc -l`92 # # Check that Python did not exit in error 93 # pythonExitCode=`echo $?` 94 # pythonExitedInError=`grep -E "Error|Traceback|bad interpreter" python.log | wc -l` 95 95 96 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then97 echo "----------Python exited in error!----------"98 cat python.log99 echo "-----------End of python.log-----------"96 # if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then 97 # echo "----------Python exited in error!----------" 98 # cat python.log 99 # echo "-----------End of python.log-----------" 100 100 101 # Clean up execution directory102 rm -rf ${ISSM_DIR}/execution/*101 # # Clean up execution directory 102 # rm -rf ${ISSM_DIR}/execution/* 103 103 104 exit 1105 fi104 # exit 1 105 # fi 106 106 107 # Check that all Python tests passed108 numPythonTestsFailed=`cat python.log | grep -c -e "FAILED|ERROR"`107 # # Check that all Python tests passed 108 # numPythonTestsFailed=`cat python.log | grep -c -e "FAILED|ERROR"` 109 109 110 if [[ ${numPythonTestsFailed} -ne 0 ]]; then111 echo "One or more Python tests FAILED"112 exit 1; 113 else114 echo "All Python tests PASSED"115 fi110 # if [[ ${numPythonTestsFailed} -ne 0 ]]; then 111 # echo "One or more Python tests FAILED" 112 # exit 1 113 # else 114 # echo "All Python tests PASSED" 115 # fi 116 116 117 117 # Create tarball … … 131 131 ls -lah ${ISSM_DIR}/${TARBALL} 132 132 133 echo "Shipping binaries to website" 134 135 # We're using public key authentication method to upload the tarball The 136 # following lines check to see if the SSH Agent is running. If not, then it is 137 # started and relevant information is forwarded to a script. 138 pgrep "ssh-agent" > /dev/null 139 if [ $? -ne 0 ]; then 140 echo "SSH Agent is not running. Starting it..." 141 ssh-agent > ~/.ssh/agent.sh 142 else 143 echo "SSH Agent is running..." 144 fi 145 146 source ~/.ssh/agent.sh 147 ssh-add ~/.ssh/pine_island_to_ross 148 149 scp ${TARBALL} ross.ics.uci.edu:/var/www/html/${TARBALL} 133 echo "Transferring binaries to ISSM Web site" 134 scp -i ~/.ssh/pine_island_to_ross ${TARBALL} jenkins@ross.ics.uci.edu:/var/www/html/${TARBALL} 150 135 151 136 if [ $? -ne 0 ]; then 152 echo "The upload failed." 153 echo "Perhaps the SSH Agent was started by some other means." 154 echo "Try killing the agent and running again." 137 echo "FAILED: Manually check connection" 138 exit 1 139 else 140 echo "SUCCESS" 155 141 fi
Note:
See TracChangeset
for help on using the changeset viewer.