source: issm/trunk-jpl/jenkins/ross-debian_linux-solid_earth@ 28037

Last change on this file since 28037 was 28037, checked in by jdquinn, 15 months ago

CHG: Cleanup of chaco and semic from build configs where appropriate

  • Property svn:executable set to *
File size: 2.9 KB
Line 
1MATLAB_PATH="/usr/local/MATLAB/R2019b"
2
3#--------------------#
4# ISSM Configuration #
5#--------------------#
6
7ISSM_CONFIG='\
8 --prefix=${ISSM_DIR} \
9 --disable-static \
10 --enable-development \
11 --enable-debugging \
12 --with-numthreads=4 \
13 --with-matlab-dir=${MATLAB_PATH} \
14 --with-python-version=3.7 \
15 --with-python-dir=/usr \
16 --with-python-numpy-dir=/usr/local/lib/python3.7/dist-packages/numpy \
17 --with-fortran-lib="-L/usr/lib/x86_64-linux-gnu -lgfortran" \
18 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
19 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
20 --with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
21 --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
22 --with-parmetis-dir=${ISSM_DIR}/externalpackages/petsc/install \
23 --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
24 --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
25 --with-hdf5-dir=${ISSM_DIR}/externalpackages/hdf5/install \
26 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
27 --with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
28 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install \
29 --with-dakota-dir=${ISSM_DIR}/externalpackages/dakota/install \
30 --with-proj-dir=${ISSM_DIR}/externalpackages/proj/install \
31 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
32 --with-chaco-dir=${ISSM_DIR}/externalpackages/chaco/install \
33 --with-m1qn3-dir=${ISSM_DIR}/externalpackages/m1qn3/install \
34'
35
36#-------------------#
37# External Packages #
38#-------------------#
39
40EXTERNALPACKAGES="
41 autotools install-linux.sh
42 cmake install.sh
43 petsc install-3.17-linux.sh
44 gsl install.sh
45 boost install-1.7-linux.sh
46 dakota install-6.2-linux.sh
47 curl install-7-linux.sh
48 hdf5 install-1-parallel.sh
49 netcdf install-4.7-parallel.sh
50 proj install-6.sh
51 gdal install-3-python.sh
52 gshhg install.sh
53 gmt install-6-linux.sh
54 gmsh install-4-linux.sh
55 triangle install-linux.sh
56 chaco install-linux.sh
57 m1qn3 install.sh
58 shell2junit install.sh
59"
60
61#---------#
62# Testing #
63#---------#
64
65# Test suites
66MATLAB_TEST=1
67PYTHON_TEST=1
68JAVASCRIPT_TEST=0
69EXAMPLES_TEST=0
70
71# Number of CPUs used in ISSM compilation
72#
73# NOTE: One is usually safer as some packages are very sensitive to parallel
74# compilation.
75#
76NUMCPUS_INSTALL=8
77
78# Number of cpus used in the nightly runs
79#
80# NOTE: Possible problem of access to all_vertices.txt if more than 1.
81#
82NUMCPUS_RUN=1
83
84# Nightly run options
85#
86# See documentation in test/NightlyRun/runme.* for more information.
87#
88# NOTE:
89# - Excluding 2006 until it can be debugged (PETSc crash)
90# - Excluding 2012 until it can be looked at by Eric ("FindParam error message: Parameter HydrologyModel not set")
91#
92MATLAB_NROPTIONS="'benchmark','slc','exclude',[2004 2006 2012 2051 2052 2053 2085 2424 2425]"
93PYTHON_NROPTIONS="--benchmark slc --exclude 2004 2006 2012 2021 2051 2052 2053 2085 2424 2425"
Note: See TracBrowser for help on using the repository browser.