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

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

CHG: Applied changes to Python copy of 2085; eased tolerances

  • Property svn:executable set to *
File size: 2.2 KB
Line 
1#--------------------#
2# ISSM Configuration #
3#--------------------#
4
5MATLAB_PATH="/usr/local/MATLAB/R2019b"
6ISSM_CONFIG='\
7 --prefix=${ISSM_DIR} \
8 --disable-static \
9 --enable-development \
10 --enable-debugging \
11 --with-numthreads=4 \
12 --with-matlab-dir=${MATLAB_PATH} \
13 --with-python-dir=/usr \
14 --with-python-numpy-dir=/usr/local/lib/python2.7/dist-packages/numpy \
15 --with-fortran-lib="-L/usr/lib/x86_64-linux-gnu -lgfortran" \
16 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
17 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
18 --with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
19 --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
20 --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
21 --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
22 --with-hdf5-dir=${ISSM_DIR}/externalpackages/petsc/install \
23 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
24 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
25 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install
26'
27
28#-------------------#
29# External Packages #
30#-------------------#
31
32EXTERNALPACKAGES="
33 autotools install-debian-linux.sh
34 cmake install.sh
35 petsc install-3.12-linux-solid_earth.sh
36 triangle install-linux.sh
37 chaco install.sh
38 m1qn3 install.sh
39 semic install.sh
40 boost install-1.7-linux.sh
41 curl install-7.67.sh
42 netcdf install-4.7-parallel.sh
43 proj install-6.2.sh
44 gdal install-3-python-netcdf.sh
45 gshhg install.sh
46 gmt install-6.0-linux.sh
47 gmsh install-4.sh
48 shell2junit install.sh
49"
50
51#---------#
52# Testing #
53#---------#
54
55# Test suites
56MATLAB_TEST=1
57PYTHON_TEST=1
58JAVASCRIPT_TEST=0
59EXAMPLES_TEST=0
60
61# Number of CPUs used in ISSM compilation
62#
63# NOTE: One is usually safer as some packages are very sensitive to parallel
64# compilation.
65#
66NUMCPUS_INSTALL=8
67
68# Number of cpus used in the nightly runs
69#
70# NOTE: Possible problem of access to all_vertices.txt if more than 1.
71#
72NUMCPUS_RUN=1
73
74# Nightly run options
75#
76# See documentation in test/NightlyRun/runme.* for more information.
77#
78MATLAB_NROPTIONS="'benchmark','slr'"
79PYTHON_NROPTIONS="--benchmark slr --exclude 2004"
Note: See TracBrowser for help on using the repository browser.