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

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

CHG: Adjustments for Solid Earth build now that HDF5/NetCDF are installed via PETSc

  • Property svn:executable set to *
File size: 2.3 KB
Line 
1#-------------------------------#
2# 1: ISSM general configuration #
3#-------------------------------#
4
5#MATLAB path
6MATLAB_PATH="/usr/local/MATLAB/R2019b"
7
8#ISSM CONFIGURATION
9ISSM_CONFIG='\
10 --prefix=$ISSM_DIR \
11 --disable-static \
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/gcc/x86_64-linux-gnu/8 -lgfortran" \
16 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
17 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
18 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/lapack/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-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \
23 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
24 --with-boost-dir=$ISSM_DIR/externalpackages/boost/install \
25 --with-numthreads=4 \
26 --enable-development \
27 --enable-debugging \
28'
29
30# Test suites
31MATLAB_TEST=1
32PYTHON_TEST=1
33JAVASCRIPT_TEST=0
34EXAMPLES_TEST=0
35
36#-----------------------------------#
37# 3: External packages installation #
38#-----------------------------------#
39
40# List of external packages to be installed and their installation scripts
41EXTERNALPACKAGES="
42 autotools install-debian.sh
43 cmake install.sh
44 mpich install-3.3.sh
45 lapack install-3.8-linux.sh
46 petsc install-3.11-linux.sh
47 triangle install-linux64.sh
48 chaco install.sh
49 m1qn3 install.sh
50 semic install.sh
51 boost install-1.55-linux.sh
52 proj install-6.2.sh
53 gdal install-3.0-netcdf.sh
54 gshhg install.sh
55 gmt install-6.0-linux.sh
56 gmsh install.sh
57 shell2junit install.sh
58"
59
60#-----------------#
61# 4: test options #
62#-----------------#
63
64# Number of CPUs used in ISSM compilation
65#
66# NOTE: One is usually safer as some packages are very sensitive to parallel
67# compilation.
68#
69NUMCPUS_INSTALL=8
70
71# Number of cpus used in the nightly runs
72#
73# NOTE: Possible problem of access to all_vertices.txt if more than 1.
74#
75NUMCPUS_RUN=1
76
77# Nightly run options
78#
79# See documentation in test/NightlyRun/runme.* for more information.
80#
81MATLAB_NROPTIONS="'benchmark','slr'"
82PYTHON_NROPTIONS="--benchmark=slr"
Note: See TracBrowser for help on using the repository browser.