1 | ########### Configuration file for nightly run on Windows XP, 32 bit ############
|
---|
2 |
|
---|
3 | #-------------------------------#
|
---|
4 | # 1: ISSM general configuration #
|
---|
5 | #-------------------------------#
|
---|
6 |
|
---|
7 | #ISSM main directory (full path)
|
---|
8 | ISSM_DIR="C:/home/issm/trunk-jpl"
|
---|
9 | ISSM_TIER="C:/home/issm/trunk-jpl/cron/trunk-jpl"
|
---|
10 |
|
---|
11 | #ISSM Architecture
|
---|
12 | ISSM_ARCH="cygwin-intel"
|
---|
13 |
|
---|
14 | #Machine configuration
|
---|
15 | MACHINE="wineric"
|
---|
16 |
|
---|
17 | #MATLAB path
|
---|
18 | MATLAB_PATH="C:/MATLAB/R2009a/"
|
---|
19 |
|
---|
20 | #----------------------#
|
---|
21 | # 2: ISSM Installation #
|
---|
22 | #----------------------#
|
---|
23 |
|
---|
24 | #ISSM_INSTALLATION can have 3 values:
|
---|
25 | # - "checkout" the existing version of the code will be erased and
|
---|
26 | # the latest version will be checked out
|
---|
27 | # - "update" the directory won't be erased but ISSM will be updated
|
---|
28 | # ->skip to section 3
|
---|
29 | # - "none" leave ISSM as is in its directory
|
---|
30 | # ->skip to section 3
|
---|
31 | ISSM_INSTALLATION="update"
|
---|
32 |
|
---|
33 | #SVN repository
|
---|
34 | REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"
|
---|
35 |
|
---|
36 | #execution path used for parallel runs
|
---|
37 | EXECUTION_PATH="/path/to/issm/execution"
|
---|
38 |
|
---|
39 | #-----------------------------------#
|
---|
40 | # 3: External packages installation #
|
---|
41 | #-----------------------------------#
|
---|
42 |
|
---|
43 | #ISSM_EXTERNALPACKAGES can have 3 values:
|
---|
44 | # - "install" install all external packages listed below
|
---|
45 | # - "copy" copy existing directories (EXTERNALPACKAGESDIR)
|
---|
46 | # - "none" leave external packages as is
|
---|
47 | # ->skip to section 4
|
---|
48 | ISSM_EXTERNALPACKAGES="none"
|
---|
49 | EXTERNALPACKAGESDIR="/cygdrive/c/home/externalpackages"
|
---|
50 |
|
---|
51 | #List of external pakages to be installed
|
---|
52 | EXTERNALPACKAGES="autoconf automake matlab mpich2 petsc metis triangle dakota chaco"
|
---|
53 |
|
---|
54 | #---------------------#
|
---|
55 | # 4: ISSM Compilation #
|
---|
56 | #---------------------#
|
---|
57 |
|
---|
58 | #ISSM_COMPILATION can have 2 values:
|
---|
59 | # - "yes" compile ISSM
|
---|
60 | # - "no" do not compile ISSM
|
---|
61 | ISSM_COMPILATION="no"
|
---|
62 |
|
---|
63 | #----------------------#
|
---|
64 | # 5: Mail notification #
|
---|
65 | #----------------------#
|
---|
66 |
|
---|
67 | #Mail delivery. If SKIPMAIL="no", the html nightly run report will be
|
---|
68 | #sent to the adresses present in $ISSM_TIER/cron/mailinglist.
|
---|
69 | SKIPMAIL="no"
|
---|
70 |
|
---|
71 | #Sender email address
|
---|
72 | EMAIL_ADRESS="eric.larour@jpl.nasa.gov"
|
---|
73 |
|
---|
74 | #------------------------#
|
---|
75 | # 6: Nightly run options #
|
---|
76 | #------------------------#
|
---|
77 |
|
---|
78 | #number of cpus used in ISSM installation and compilation (one is usually
|
---|
79 | #safer as some packages are very sensitive to parallel compilation)
|
---|
80 | NUMCPUS_INSTALL=1
|
---|
81 |
|
---|
82 | #number of cpus used in the nightly runs.
|
---|
83 | NUMCPUS_RUN=1
|
---|
84 |
|
---|
85 | #Nightly run options. The matlab routine nightlyrun.m will be called
|
---|
86 | #as follows: nightlyrun($NROPTIONS). The options must be understandable
|
---|
87 | #by Matlab and nightlyrun.m
|
---|
88 | #ex: "'id',[101 102 103]"
|
---|
89 |
|
---|
90 | NROPTIONS=""
|
---|