Changeset 1595
- Timestamp:
- 08/05/09 16:53:45 (16 years ago)
- Location:
- issm/trunk/cron
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/cron/nightlyrun.sh
r1593 r1595 51 51 52 52 #Erase previous code and Fetch the new one 53 #rm -rf trunk54 #svn checkout $REPOSITORY53 rm -rf trunk 54 svn checkout $REPOSITORY 55 55 56 56 #install ISSM … … 77 77 cd $ISSM_DIR 78 78 rm -rf externalpackages 79 ln -s$EXTERNALPACKAGESDIR ./79 cp -Rf $EXTERNALPACKAGESDIR ./ 80 80 81 81 rm -rf devpackages 82 ln -s$DEVPACKAGESDIR ./82 cp -Rf $DEVPACKAGESDIR ./ 83 83 else 84 84 #2: install some required external packages … … 103 103 104 104 #4: compile and install ISSM 105 make -j $NUMCPUS 106 make -j $NUMCPUS install 105 if [[ "$OS" == "winxp32" ]] 106 then 107 cd $ISSM_DIR/src/c 108 ./intel-compile.sh 109 cd $ISSM_DIR/src/mex 110 make install 111 cd $ISSM_DIR 112 else 113 make -j $NUMCPUS 114 make -j $NUMCPUS install 115 fi 116 107 117 INSTAL_TIME=$(timer) 108 118 export ELAPSED_INSTAL=$(timer $START_TIME) 109 119 110 120 #Launch matlab and the nightly run script 111 matlab -nojvm -nosplash > ./nightlylong.log << EOF 121 cat > matlab_run.m << EOF 112 122 startup 113 123 nightlyrun($PACKAGES); 124 exit 114 125 EOF 126 127 matlab -wait -nojvm -nosplash -r matlab_run -logfile nightlylong.log 115 128 116 129 #removed unused lines to deal with a smaller file -
issm/trunk/cron/winxp32_cronfile
r1554 r1595 2 2 SHELL=/bin/bash 3 3 4 #mail output to Mathieu4 #mail output to Eric 5 5 MAILTO=eric.larour@jpl.nasa.gov 6 6 7 7 #cronjob: issm sunday-friday 9:00pm 8 0 21 * * 0-5 cd / u/wilkes-r1b/morlighe/svn/issm/trunk/cron/&& ./nightlyrun.sh configs/winxp32_larour8 0 21 * * 0-5 cd /cygdrive/c/issm/trunk/cron && ./nightlyrun.sh configs/winxp32_larour
Note:
See TracChangeset
for help on using the changeset viewer.