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