Changeset 22758 for issm/trunk/jenkins/jenkins.sh
- Timestamp:
- 05/10/18 10:24:27 (7 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
-
issm/trunk/jenkins/jenkins.sh
r22209 r22758 157 157 echo " ERROR: installation of $PACKAGENAME failed "; 158 158 echo "======================================================"; 159 cat compil.log 159 160 echo "<testcase classname=\"externalpackages\" name=\"$PACKAGENAME\">" >> $EXTERNAL_TEST_FILE 160 161 echo '<failure message="failure">External packages did not install right. Check it.' >> $EXTERNAL_TEST_FILE … … 240 241 make 241 242 fi 243 if [ $? -ne 0 ] && [ $NUMCPUS_INSTALL -gt 1 ]; then 244 echo " " 245 echo "Compilation failed, trying to compile with only one threatd" 246 echo " " 247 make 248 fi 242 249 if [ $? -ne 0 ]; then 243 250 echo "ISSM_COMPILATION failed!" … … 320 327 echo '-----------------------------' 321 328 322 rm matlab_log.log 329 if [ -f matlab_log.log ]; then 330 rm matlab_log.log 331 fi 323 332 324 333 for job in `jobs -p` … … 342 351 if [ $PYTHON_TEST -eq 1 ]; then 343 352 #Launch all tests on different cpus 344 PYTHON_START_TIME=$(timer);345 353 export PYTHONSTARTUP=$ISSM_DIR/src/m/dev/devpath.py 346 354 export PYTHONUNBUFFERED=1 #we don't want python to buffer otherwise issm.exe output is not captured … … 355 363 # concatenate reports 356 364 cd $ISSM_DIR/nightlylog/ 357 rm python_log.log 365 if [ -f python_log.log ]; then 366 rm python_log.log 367 fi 358 368 359 369 for job in `jobs -p`
Note:
See TracChangeset
for help on using the changeset viewer.