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

Last change on this file since 25699 was 25699, checked in by jdquinn, 4 years ago

CHG: Enabling 2006 for Python

  • Property svn:executable set to *
File size: 2.7 KB
RevLine 
[24593]1#--------------------#
2# ISSM Configuration #
3#--------------------#
[24412]4
5MATLAB_PATH="/usr/local/MATLAB/R2019b"
[25659]6
[24412]7ISSM_CONFIG='\
[24593]8 --prefix=${ISSM_DIR} \
[24412]9 --disable-static \
[24593]10 --enable-development \
11 --enable-debugging \
12 --with-numthreads=4 \
13 --with-matlab-dir=${MATLAB_PATH} \
[24412]14 --with-python-dir=/usr \
15 --with-python-numpy-dir=/usr/local/lib/python2.7/dist-packages/numpy \
[24641]16 --with-fortran-lib="-L/usr/lib/x86_64-linux-gnu -lgfortran" \
[24632]17 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
18 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
19 --with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
[24593]20 --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
21 --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
22 --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
[24919]23 --with-hdf5-dir=${ISSM_DIR}/externalpackages/petsc/install \
[24593]24 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
[25690]25 --with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
26 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install \
27 --with-dakota-dir=${ISSM_DIR}/externalpackages/dakota/install \
[24593]28 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
[25095]29 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install
[24412]30'
31
[24593]32#-------------------#
33# External Packages #
34#-------------------#
[24412]35
36EXTERNALPACKAGES="
[25125]37 autotools install-debian-linux.sh
38 cmake install.sh
[25676]39 petsc install-3.14-linux.sh
[25690]40 gsl install.sh
[25125]41 boost install-1.7-linux.sh
[25690]42 dakota install-6.2-linux.sh
43 boost install-1.7-linux.sh
[25125]44 curl install-7.67.sh
45 netcdf install-4.7-parallel.sh
46 proj install-6.2.sh
[25200]47 gdal install-3-python-netcdf.sh
[25125]48 gshhg install.sh
49 gmt install-6.0-linux.sh
50 gmsh install-4.sh
[25690]51 triangle install-linux.sh
52 chaco install.sh
53 m1qn3 install.sh
54 semic install.sh
[25125]55 shell2junit install.sh
[24412]56"
57
[24593]58#---------#
59# Testing #
60#---------#
[24412]61
[24593]62# Test suites
[25126]63MATLAB_TEST=1
[24593]64PYTHON_TEST=1
65JAVASCRIPT_TEST=0
66EXAMPLES_TEST=0
67
[24412]68# Number of CPUs used in ISSM compilation
69#
70# NOTE: One is usually safer as some packages are very sensitive to parallel
71# compilation.
72#
73NUMCPUS_INSTALL=8
74
75# Number of cpus used in the nightly runs
76#
77# NOTE: Possible problem of access to all_vertices.txt if more than 1.
78#
79NUMCPUS_RUN=1
80
81# Nightly run options
82#
83# See documentation in test/NightlyRun/runme.* for more information.
84#
[25434]85# NOTE:
[25545]86# - Tests 2002, 2003, 2010, 2101, and 2021 are excluded as Gmsh produces different-sized meshes on macOS and Linux for 3d objects (archives are generated on macOS).
[25434]87#
[25552]88MATLAB_NROPTIONS="'benchmark','slr','exclude',[2002 2003 2010 2021 2101]"
[25699]89PYTHON_NROPTIONS="--benchmark slr --exclude 2002 2003 2005 2010 2021 2101"
Note: See TracBrowser for help on using the repository browser.