Changeset 27951
- Timestamp:
- 10/08/23 14:17:36 (18 months ago)
- Location:
- issm/trunk-jpl/packagers
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh
r27944 r27951 140 140 141 141 # Check that MATLAB did not exit in error 142 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log | wc -l`142 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log` 143 143 144 144 if [ ${matlabExitedInError} -ne 0 ]; then -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh
r27944 r27951 139 139 # Check that Python did not exit in error 140 140 pythonExitCode=`echo $?` 141 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log | wc -l`141 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log` 142 142 143 143 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh
r27944 r27951 147 147 148 148 # Check that MATLAB did not exit in error 149 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log | wc -l`149 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log` 150 150 151 151 if [ ${matlabExitedInError} -ne 0 ]; then -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh
r27944 r27951 145 145 # Check that Python did not exit in error 146 146 pythonExitCode=`echo $?` 147 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log | wc -l`147 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log` 148 148 149 149 if [[ ${pythonExitCode} -ne 0 || ${pythonExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-matlab.sh
r27944 r27951 34 34 # Check that MATLAB did not exit in error 35 35 matlabExitCode=`echo $?` 36 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log | wc -l`36 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log` 37 37 38 38 if [[ ${matlabExitCode} -ne 0 || ${matlabExitedInError} -ne 0 ]]; then -
issm/trunk-jpl/packagers/mac/test-issm-mac-binaries-python-3.sh
r27944 r27951 34 34 # Check that Python did not exit in error 35 35 pythonExitCode=`echo $?` 36 pythonExitedInError=`grep -c -E "Error|No such file or directory|Permission denied|Standard exception|Traceback|bad interpreter|syntax error" python.log | wc -l`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 -
issm/trunk-jpl/packagers/win/package-issm-win-binaries-matlab.sh
r27948 r27951 196 196 197 197 # Check that MATLAB did not exit in error 198 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log | wc -l`198 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log` 199 199 200 200 if [ ${matlabExitedInError} -ne 0 ]; then
Note:
See TracChangeset
for help on using the changeset viewer.