1 | #--------------------#
|
---|
2 | # ISSM Configuration #
|
---|
3 | #--------------------#
|
---|
4 |
|
---|
5 | MATLAB_PATH="/Applications/MATLAB_R2018a.app"
|
---|
6 |
|
---|
7 | ISSM_CONFIG='\
|
---|
8 | --prefix=${ISSM_DIR} \
|
---|
9 | --disable-static \
|
---|
10 | --enable-development \
|
---|
11 | --enable-debugging \
|
---|
12 | --with-numthreads=4 \
|
---|
13 | --with-matlab-dir=${MATLAB_PATH} \
|
---|
14 | --with-python-dir=/System/Library/Frameworks/Python.framework/Versions/2.7 \
|
---|
15 | --with-python-numpy-dir=/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy \
|
---|
16 | --with-fortran-lib="-L/usr/local/Cellar/gcc/10.2.0/lib/gcc/10 -lgfortran" \
|
---|
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 \
|
---|
20 | --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
21 | --with-parmetis-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
22 | --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
23 | --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
24 | --with-hdf5-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
25 | --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
26 | --with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
|
---|
27 | --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install \
|
---|
28 | --with-dakota-dir=${ISSM_DIR}/externalpackages/dakota/install \
|
---|
29 | --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
|
---|
30 | --with-chaco-dir=${ISSM_DIR}/externalpackages/chaco/install \
|
---|
31 | --with-m1qn3-dir=${ISSM_DIR}/externalpackages/m1qn3/install \
|
---|
32 | --with-semic-dir=${ISSM_DIR}/externalpackages/semic/install \
|
---|
33 | '
|
---|
34 |
|
---|
35 | #-------------------#
|
---|
36 | # External Packages #
|
---|
37 | #-------------------#
|
---|
38 |
|
---|
39 | #List of external pakages to be installed and their installation scripts
|
---|
40 | EXTERNALPACKAGES="
|
---|
41 | autotools install-mac.sh
|
---|
42 | cmake install.sh
|
---|
43 | petsc install-3.12-mac.sh
|
---|
44 | gsl install.sh
|
---|
45 | boost install-1.7-mac.sh
|
---|
46 | dakota install-6.2-mac.sh
|
---|
47 | curl install-7-mac.sh
|
---|
48 | netcdf install-4.7-parallel.sh
|
---|
49 | proj install-6.2.sh
|
---|
50 | gdal install-3-python.sh
|
---|
51 | gshhg install.sh
|
---|
52 | gmt install-6-mac.sh
|
---|
53 | gmsh install-4.sh
|
---|
54 | triangle install-mac.sh
|
---|
55 | chaco install.sh
|
---|
56 | m1qn3 install.sh
|
---|
57 | semic install.sh
|
---|
58 | shell2junit install.sh
|
---|
59 | "
|
---|
60 |
|
---|
61 | #---------#
|
---|
62 | # Testing #
|
---|
63 | #---------#
|
---|
64 |
|
---|
65 | # Test suites
|
---|
66 | MATLAB_TEST=1
|
---|
67 | PYTHON_TEST=1
|
---|
68 | JAVASCRIPT_TEST=0
|
---|
69 | EXAMPLES_TEST=0
|
---|
70 |
|
---|
71 | # Number of CPUs used in ISSM compilation
|
---|
72 | #
|
---|
73 | # NOTE: One is usually safer as some packages are very sensitive to parallel
|
---|
74 | # compilation
|
---|
75 | #
|
---|
76 | NUMCPUS_INSTALL=4
|
---|
77 |
|
---|
78 | # Number of CPUs used in the nightly runs
|
---|
79 | NUMCPUS_RUN=2
|
---|
80 |
|
---|
81 | # Nightly run options
|
---|
82 | #
|
---|
83 | # See documentation in test/NightlyRun/runme.* for more information.
|
---|
84 | #
|
---|
85 | # NOTE:
|
---|
86 | # - Errors are large for tests 234, 235, 418, and 420 under MATLAB
|
---|
87 | # - Tests 444 and 445 fail intermittently under MATLAB with "Index exceeds array bounds."
|
---|
88 | # - Errors are large for tests 234 418 and 420 under Python
|
---|
89 | # - See test417.py for why it is excluded
|
---|
90 | # - Test 444 fails intermittently under Python with "IndexError: list index out of range"
|
---|
91 | # - Excluding 2006 until it can be debugged (file I/O)
|
---|
92 | #
|
---|
93 | MATLAB_NROPTIONS="'id',[IdFromString('Dakota')],'exclude',[234 235 418 420 444 445 2006]"
|
---|
94 | PYTHON_NROPTIONS="--include_name 'Dakota' --exclude 234 417 418 420 444 445 2006"
|
---|