Changeset 5083


Ignore:
Timestamp:
08/09/10 12:26:43 (15 years ago)
Author:
Mathieu Morlighem
Message:

report.sh is now located in scripts

Location:
issm/trunk/cron
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/cron/nightlyrun.sh

    r5081 r5083  
    217217ln -s $ISSM_DIR/startup.m .
    218218#}}}
    219 #Create nightlylog directory and nightly.log {{{1
    220 #put installation elapsed time in nightly.log
     219#Create nightlylog directory and info.log {{{1
     220#put installation elapsed time in info.log
    221221INSTALL_TIME=$(timer)
    222222ELAPSED_INSTALL=$(timer $START_TIME)
    223223rm -rf $ISSM_DIR/nightlylog
    224224mkdir  $ISSM_DIR/nightlylog
    225 cat << END > $ISSM_DIR/nightlylog/nightly.log
     225cat << END > $ISSM_DIR/nightlylog/info.log
    226226today:     $(echo $TODAY)
    227227user:      $(echo $USER)
     
    247247        #Launch matlab and the nightly run script
    248248        cat > $ISSM_DIR/nightlylog/matlab_run$i.m << EOF
    249         warning off %necessary to avoid a nightly.log of several Go for parallel runs
     249        warning off %necessary to avoid a info.log of several Go for parallel runs
    250250        try,
    251251        cd $ISSM_DIR/test/NightlyRun
     
    282282#}}}
    283283#concatenate all reports {{{1
     284cd $ISSM_DIR/nightlylog/
    284285mv matlab_log1.log  matlab_log.log
    285286for (( i=2;i<=$NUMCPUS_RUN;i++ ))
     
    291292done
    292293#}}}
    293 #Complete nightly.log {{{1
     294#Complete info.log {{{1
    294295ELAPSED_RUN=$(timer $INSTALL_TIME)
    295296ELAPSED_TOTAL=$(timer $START_TIME)
    296 cat << END >>  $ISSM_DIR/nightlylog/nightly.log
     297cat << END >>  $ISSM_DIR/nightlylog/info.log
    297298elapsed_run:   $(echo $ELAPSED_RUN)
    298299elapsed_total: $(echo $ELAPSED_TOTAL)
     
    303304#Build html report {{{1
    304305cd $ISSM_DIR/nightlylog/
    305 sh ../cron/report.sh
     306sh ../scripts/report.sh
    306307echo "html report located in $ISSM_DIR/nightlylog/report.html"
    307308#}}}
Note: See TracChangeset for help on using the changeset viewer.