Changeset 1566
- Timestamp:
- 08/05/09 09:18:20 (16 years ago)
- Location:
- issm/trunk/cron
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/cron/nightlyrun.sh
r1564 r1566 37 37 #launch nightly run (get start time) 38 38 source $1; 39 START =$(timer)39 START_TIME=$(timer) 40 40 fi 41 41 … … 93 93 make -j $NUMCPUS 94 94 make -j $NUMCPUS install 95 INSTAL_TIME=$(timer) 96 export ELAPSED_INSTAL=$(timer $START) 95 97 96 98 #Launch matlab and the nightly run script … … 105 107 106 108 #Build html report 107 export ELAPSEDTIME=$(timer $START) 109 export ELAPSED_RUN=$(timer $INSTAL_TIME) 110 export ELAPSED_TOTAL=$(timer $START_TIME) 108 111 ./cron/report.sh 109 112 -
issm/trunk/cron/report.sh
r1562 r1566 83 83 platform: $ISSM_ARCH<br> 84 84 release: $ISSM_RELEASE<br> 85 elapsed time: $ELAPSEDTIME<br> 85 total elapsed time: $ELAPSED_TOTAL<br> 86 installation elapsed time: $ELAPSED_INSTAL<br> 87 runs elapsed time: $ELAPSED_RUN<br> 86 88 <br> 87 89 status: $(if [ `wc -l check.log | awk '{printf("%s",$1);}'` = "0" ];
Note:
See TracChangeset
for help on using the changeset viewer.