source: issm/branches/trunk-larour-SLPS2020/jenkins/linux64_caladan_ad@ 25329

Last change on this file since 25329 was 24829, checked in by jdquinn, 5 years ago

CHG: Needed to update simplified GSL install script name.

  • Property svn:executable set to *
File size: 1.5 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='\
11 --prefix=$ISSM_DIR\
12 --disable-static \
13 --prefix=$ISSM_DIR \
14 --without-kriging \
15 --without-kml \
16 --without-Gia \
17 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \
18 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \
19 --with-matlab-dir=$MATLAB_PATH \
20 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install
21'
22
23#PYTHON and MATLAB testing
24MATLAB_TEST=1
25PYTHON_TEST=0
26
27#-----------------------------------#
28# 3: External packages installation #
29#-----------------------------------#
30
31#List of external pakages to be installed and their installation scripts
32EXTERNALPACKAGES="
33 autotools install.sh
34 cmake install.sh
35 mpich install-3.2-linux64.sh
36 petsc install-3.7-linux64.sh
37 gsl install.sh
38 triangle install-linux.sh
39 adolc install.sh
40 shell2junit install.sh
41"
42
43#-----------------#
44# 4: test options #
45#-----------------#
46
47#number of cpus used in ISSM installation and compilation (one is usually
48#safer as some packages are very sensitive to parallel compilation)
49NUMCPUS_INSTALL=2
50
51#number of cpus used in the nightly runs.
52NUMCPUS_RUN=1
53
54#Nightly run options. The matlab routine runme.m will be called
55#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
56#by Matlab and runme.m
57#ex: "'id',[101 102 103]"
58MATLAB_NROPTIONS="'benchmark','adolc','id',[3001:3019]"
59PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.