source: issm/trunk-jpl/jenkins/linux64_ross_ad@ 19675

Last change on this file since 19675 was 19675, checked in by glperez, 9 years ago

ADD: new files for Ross Jenkins.

  • Property svn:executable set to *
File size: 2.3 KB
RevLine 
[19675]1#
2#-------------------------------#
3# 1: ISSM general configuration #
4#-------------------------------#
5
6#ISSM CONFIGURATION
7ISSM_CONFIG='--prefix=$ISSM_DIR\
8 --disable-static \
9 --prefix=$ISSM_DIR \
10 --without-kriging \
11 --without-kml \
12 --without-Gia \
13 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \
14 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \
15 --with-matlab-dir=$MATLAB_DIR \
16 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install '
17#MATLAB path
18MATLAB_PATH="/usr/local/MATLAB/R2015a"
19
20#PYTHON and MATLAB testing
21MATLAB_TEST=1
22PYTHON_TEST=0
23
24#execution path used for parallel runs
25EXECUTION_PATH=$ISSM_DIR/execution
26
27#repo:
28REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"
29SVN='/usr/bin/svn'
30SVNVERSION='/usr/bin/svnversion'
31
32#-----------------------------------#
33# 3: External packages installation #
34#-----------------------------------#
35
36#ISSM_EXTERNALPACKAGES can have 3 values:
37# - "install" install all external packages listed below
38# - "copy" copy existing directories (EXTERNALPACKAGESDIR)
39# - "none" leave external packages as is
40# ->skip to section 4
41ISSM_EXTERNALPACKAGES="install"
42EXTERNALPACKAGESDIR=$ISSM_DIR/externalpackages
43
44#List of external pakages to be installed and their installation scripts
45EXTERNALPACKAGES="autotools install.sh
46 matlab install.sh
47 mpich install-3.0-linux64.sh
48 petsc install-3.5-linux64.sh
49 metis install-5.0.1-linux64.sh
50 triangle install-linux64.sh
51 gsl install-linux64.sh
52 adolc install.sh
53 shell2junit install.sh"
54
55#---------------------#
56# 4: ISSM Compilation #
57#---------------------#
58
59#ISSM_COMPILATION can have 2 values:
60# - "yes" compile ISSM
61# - "no" do not compile ISSM
62ISSM_COMPILATION="yes"
63
64#------------------------#
65# 5: Nightly run options #
66#------------------------#
67
68#number of cpus used in ISSM installation and compilation (one is usually
69#safer as some packages are very sensitive to parallel compilation)
70NUMCPUS_INSTALL=3
71
72#number of cpus used in the nightly runs.
73NUMCPUS_RUN=2
74
75#Nightly run options. The matlab routine runme.m will be called
76#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
77#by Matlab and runme.m
78#ex: "'id',[101 102 103]"
79MATLAB_NROPTIONS="'benchmark','adolc','id',[3001:3019]"
80PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.