[28037] | 1 | # NOTE: This configuration adds solid earth and Dakota capabilities to the
|
---|
| 2 | # basic build.
|
---|
| 3 |
|
---|
| 4 | #--------------------#
|
---|
| 5 | # ISSM Configuration #
|
---|
| 6 | #--------------------#
|
---|
| 7 |
|
---|
| 8 | ISSM_CONFIG='\
|
---|
| 9 | --prefix="${ISSM_DIR}" \
|
---|
| 10 | --disable-static \
|
---|
[28045] | 11 | --enable-development \
|
---|
| 12 | --enable-debugging \
|
---|
[28037] | 13 | --with-numthreads=1 \
|
---|
[28045] | 14 | --with-python-version=3.9 \
|
---|
| 15 | --with-python-dir=/cvmfs/soft.ccr.buffalo.edu/versions/2023.01/easybuild/software/avx512/Compiler/gcccore/11.2.0/python/3.9.6 \
|
---|
[28046] | 16 | --with-python-numpy-dir=/cvmfs/soft.ccr.buffalo.edu/versions/2023.01/easybuild/software/avx512/MPI/gcc/11.2.0/openmpi/4.1.1/scipy-bundle/2021.10/lib/python3.9/site-packages/numpy \
|
---|
| 17 | --with-fortran-lib="-L/cvmfs/soft.ccr.buffalo.edu/versions/2023.01/easybuild/software/Core/gcccore/11.2.0/lib64 -lgfortran" \
|
---|
[28037] | 18 | --with-mpi-include="${ISSM_EXT_DIR}/petsc/install/include" \
|
---|
| 19 | --with-mpi-libflags="-L${ISSM_EXT_DIR}/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
|
---|
| 20 | --with-blas-lapack-dir="${ISSM_EXT_DIR}/petsc/install" \
|
---|
| 21 | --with-metis-dir="${ISSM_EXT_DIR}/petsc/install" \
|
---|
| 22 | --with-parmetis-dir="${ISSM_EXT_DIR}/petsc/install" \
|
---|
| 23 | --with-scalapack-dir="${ISSM_EXT_DIR}/petsc/install" \
|
---|
| 24 | --with-mumps-dir="${ISSM_EXT_DIR}/petsc/install" \
|
---|
[28046] | 25 | --with-hdf5-dir="${ISSM_EXT_DIR}//hdf5/install" \
|
---|
[28037] | 26 | --with-petsc-dir="${ISSM_EXT_DIR}/petsc/install" \
|
---|
| 27 | --with-gsl-dir="${ISSM_EXT_DIR}/gsl/install" \
|
---|
| 28 | --with-boost-dir="${ISSM_EXT_DIR}/boost/install" \
|
---|
| 29 | --with-dakota-dir="${ISSM_EXT_DIR}/dakota/install" \
|
---|
| 30 | --with-chaco-dir="${ISSM_EXT_DIR}/chaco/install" \
|
---|
[28043] | 31 | --with-triangle-dir="${ISSM_EXT_DIR}/triangle/install" \
|
---|
[28037] | 32 | --with-m1qn3-dir="${ISSM_EXT_DIR}/m1qn3/install" \
|
---|
[28043] | 33 | --with-semic-dir="${ISSM_EXT_DIR}/semic/install" \
|
---|
[28037] | 34 | '
|
---|
| 35 |
|
---|
| 36 | #-------------------#
|
---|
| 37 | # External Packages #
|
---|
| 38 | #-------------------#
|
---|
| 39 |
|
---|
| 40 | EXTERNALPACKAGES="
|
---|
| 41 | autotools install-linux.sh
|
---|
| 42 | cmake install.sh
|
---|
| 43 | petsc install-3.14-linux.sh
|
---|
| 44 | gsl install.sh
|
---|
| 45 | boost install-1.7-linux.sh
|
---|
| 46 | dakota install-6.2-linux.sh
|
---|
| 47 | chaco install-linux.sh
|
---|
[28046] | 48 | hdf5 install-1-parallel.sh
|
---|
[28047] | 49 | netcdf install-4.7-parallel.sh
|
---|
[28043] | 50 | triangle install-linux.sh
|
---|
[28037] | 51 | m1qn3 install.sh
|
---|
[28043] | 52 | semic install.sh
|
---|
| 53 | shell2junit install.sh
|
---|
[28037] | 54 | "
|
---|
| 55 |
|
---|
| 56 | #---------#
|
---|
| 57 | # Testing #
|
---|
| 58 | #---------#
|
---|
| 59 |
|
---|
| 60 | # Test suites
|
---|
| 61 | MATLAB_TEST=0
|
---|
[28041] | 62 | PYTHON_TEST=1
|
---|
[28037] | 63 | JAVASCRIPT_TEST=0
|
---|
| 64 | EXAMPLES_TEST=0
|
---|
| 65 |
|
---|
| 66 | # Number of CPUs used in ISSM compilation
|
---|
| 67 | #
|
---|
| 68 | # NOTE: One is usually safer as some packages are very sensitive to parallel
|
---|
| 69 | # compilation
|
---|
| 70 | #
|
---|
| 71 | NUMCPUS_INSTALL=8
|
---|
| 72 |
|
---|
| 73 | # Number of CPUs used in the nightly runs
|
---|
| 74 | NUMCPUS_RUN=1
|
---|
| 75 |
|
---|
| 76 | # Nightly run options
|
---|
| 77 | MATLAB_NROPTIONS=""
|
---|
[28042] | 78 | PYTHON_NROPTIONS="--exclude 234 418 420"
|
---|