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

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

CHG: Added new configurations for Linux binaries, including support for Python bindings under Dakota, shipping of dynamic copy of libgfortran; external package configurations; cleanup of m4/issm_options.m4, Makefile.am’s, Jenkins configuration files; addition of Linux binaries packaging and testing scripts

  • Property svn:executable set to *
File size: 2.2 KB
RevLine 
[24593]1#--------------------#
2# ISSM Configuration #
3#--------------------#
[24412]4
5MATLAB_PATH="/usr/local/MATLAB/R2019b"
6ISSM_CONFIG='\
[24593]7 --prefix=${ISSM_DIR} \
[24412]8 --disable-static \
[24593]9 --enable-development \
10 --enable-debugging \
11 --with-numthreads=4 \
12 --with-matlab-dir=${MATLAB_PATH} \
[24412]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" \
[24593]16 --with-mpi-include=${ISSM_DIR}/externalpackages/mpich/install/include \
[24412]17 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
[24593]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 \
[24412]25'
26
[24593]27#-------------------#
28# External Packages #
29#-------------------#
[24412]30
31EXTERNALPACKAGES="
[24593]32 autotools install-debian-linux.sh
[24412]33 cmake install.sh
34 mpich install-3.3.sh
35 lapack install-3.8-linux.sh
[24424]36 petsc install-3.7-linux.sh
[24593]37 triangle install-linux.sh
[24412]38 chaco install.sh
39 m1qn3 install.sh
40 semic install.sh
41 boost install-1.55-linux.sh
[24428]42 zlib install-1.2.sh
[24424]43 hdf5 install-1.10.sh
[24454]44 curl install-7.67.sh
[24424]45 netcdf install-4.7.sh
[24412]46 proj install-6.2.sh
[24454]47 gdal install-3.0-python-netcdf.sh
[24412]48 gshhg install.sh
[24523]49 gmt install-6.0-linux.sh
[24412]50 gmsh install.sh
51 shell2junit install.sh
52"
53
[24593]54#---------#
55# Testing #
56#---------#
[24412]57
[24593]58# Test suites
59MATLAB_TEST=1
60PYTHON_TEST=1
61JAVASCRIPT_TEST=0
62EXAMPLES_TEST=0
63
[24412]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.