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

Last change on this file since 20338 was 20338, checked in by Mathieu Morlighem, 9 years ago

NEW: trying to get rid of MATLAB_DIR, do not use this variable anymore and do NOT install matlab

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