Changeset 1593
- Timestamp:
- 08/05/09 15:41:50 (16 years ago)
- Location:
- issm/trunk/cron
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/cron/configs/linux64_morlighem
r1562 r1593 11 11 #ISSM Architecture 12 12 ISSM_ARCH="linux-gnu-amd64" 13 14 #Compile packages? 15 SKIPPACKAGESCOMPILATION=no 16 EXTERNALPACKAGESDIR=/cygdrive/c/home/externalpackages 17 DEVPACKAGESDIR=/cygdrive/c/home/devpackages 13 18 14 19 #Operating System -
issm/trunk/cron/configs/macosx32_morlighem
r1562 r1593 14 14 OS="macosx32" 15 15 16 #Compile packages? 17 SKIPPACKAGESCOMPILATION=no 18 EXTERNALPACKAGESDIR=/cygdrive/c/home/externalpackages 19 DEVPACKAGESDIR=/cygdrive/c/home/devpackages 20 16 21 #external pakages to be installed 17 22 EXTERNALPACKAGES="mpich2 petsc metis triangle" -
issm/trunk/cron/configs/macosx32_seroussi
r1562 r1593 14 14 OS="macosx32" 15 15 16 #Compile packages? 17 SKIPPACKAGESCOMPILATION=no 18 EXTERNALPACKAGESDIR=/cygdrive/c/home/externalpackages 19 DEVPACKAGESDIR=/cygdrive/c/home/devpackages 20 16 21 #external pakages to be installed 17 22 EXTERNALPACKAGES="mpich2 petsc metis triangle" -
issm/trunk/cron/configs/winxp32_larour
r1585 r1593 6 6 7 7 #ISSM directory 8 ISSM_DIR=" /cygdrive/c/home/issm/trunk/cron/trunk"8 ISSM_DIR="C:/home/issm/trunk/cron/trunk" 9 9 10 10 #ISSM Architecture … … 14 14 OS="winxp32" 15 15 16 #Compile packages? 17 SKIPPACKAGESCOMPILATION=yes 18 EXTERNALPACKAGESDIR=/cygdrive/c/home/externalpackages 19 DEVPACKAGESDIR=/cygdrive/c/home/devpackages 20 16 21 #external pakages to be installed 17 #EXTERNALPACKAGES="petsc metis triangle" 18 EXTERNALPACKAGES="petsc" 22 EXTERNALPACKAGES="petsc metis triangle" 19 23 20 24 #number of cpus -
issm/trunk/cron/nightlyrun.sh
r1585 r1593 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 … … 72 72 END 73 73 74 #2: install some required external packages 75 cd $ISSM_DIR/externalpackages 76 for ep in $EXTERNALPACKAGES 77 do 78 cd $ep 79 cp configs/$OS/* . 80 ./install.sh $NUMCPUS 74 if [[ $SKIPPACKAGESCOMPILATION == "yes" ]] 75 then 76 #erase externapackages, and link with externalpackages_dir 77 cd $ISSM_DIR 78 rm -rf externalpackages 79 ln -s $EXTERNALPACKAGESDIR ./ 80 81 rm -rf devpackages 82 ln -s $DEVPACKAGESDIR ./ 83 else 84 #2: install some required external packages 85 cd $ISSM_DIR/externalpackages 86 for ep in $EXTERNALPACKAGES 87 do 88 cd $ep 89 cp configs/$OS/* . 90 ./install.sh $NUMCPUS 91 cd .. 92 done 93 94 #3: install automake and autoconf 95 cd $ISSM_DIR/devpackages 96 make 81 97 cd .. 82 done 83 84 #3: install automake and autoconf 85 cd $ISSM_DIR/devpackages 86 make 87 cd .. 98 fi 88 99 89 100 #3: generate MakeFiles
Note:
See TracChangeset
for help on using the changeset viewer.