Changeset 27712
- Timestamp:
- 04/27/23 11:47:44 (23 months ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/jenkins.sh
r27708 r27712 477 477 478 478 # Check that MATLAB did not exit in error 479 matlabExitedInError=`grep -E "Activation cannot proceed|Error in|Illegal use of reserved keyword|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab_log.log | wc -l`479 matlabExitedInError=`grep -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab_log.log | wc -l` 480 480 481 481 if [ $matlabExitedInError -ne 0 ]; then … … 530 530 531 531 # Check that MATLAB did not exit in error 532 matlabExitedInError=`grep -E "Activation cannot proceed|Error in|Illegal use of reserved keyword" matlab_log_examples.log | wc -l`532 matlabExitedInError=`grep -E "Activation cannot proceed|Error in|Illegal|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab_log_examples.log | wc -l` 533 533 534 534 if [ $matlabExitedInError -ne 0 ]; then -
issm/trunk-jpl/jenkins/mac-silicon-basic
r27702 r27712 14 14 # ISSM Configuration # 15 15 #--------------------# 16 17 MATLAB_PATH="/Applications/MATLAB_R2022b.app" # NOTE: Although we do not configu 18 re/compile MATLAB wrappers, we need to set this variable for testing 16 19 17 20 ISSM_CONFIG='\ -
issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh
r27603 r27712 140 140 141 141 # Check that MATLAB did not exit in error 142 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal use of reserved keyword|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log`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/mac/package-issm-mac-binaries-matlab.sh
r27607 r27712 147 147 148 148 # Check that MATLAB did not exit in error 149 matlabExitedInError=`grep -c -E "Activation cannot proceed|Error in|Illegal use of reserved keyword|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log`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/test-issm-mac-binaries-matlab.sh
r27603 r27712 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 use of reserved keyword|Invalid MEX-file|license|Warning: Name is nonexistent or not a directory" matlab.log`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
Note:
See TracChangeset
for help on using the changeset viewer.