Changeset 27613
- Timestamp:
- 02/24/23 11:18:29 (2 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/jenkins.sh
r27603 r27613 497 497 498 498 # Check that Python did not exit in error 499 pythonExitedInError=`grep -c -E "Error| Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python_log.log`499 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python_log.log` 500 500 501 501 if [ $pythonExitedInError -ne 0 ]; then -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh
r27603 r27613 142 142 # Check that Python did not exit in error 143 143 pythonExitCode=`echo $?` 144 pythonExitedInError=`grep -c -E "Error| Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`144 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log` 145 145 146 146 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh
r27607 r27613 148 148 # Check that Python did not exit in error 149 149 pythonExitCode=`echo $?` 150 pythonExitedInError=`grep -c -E "Error| Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`150 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log` 151 151 152 152 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python-3.sh
r27603 r27613 34 34 # Check that Python did not exit in error 35 35 pythonExitCode=`echo $?` 36 pythonExitedInError=`grep -c -E "Error| Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log`36 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log` 37 37 38 38 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then
Note:
See TracChangeset
for help on using the changeset viewer.