[24650] | 1 | #--------------------#
|
---|
| 2 | # ISSM Configuration #
|
---|
| 3 | #--------------------#
|
---|
| 4 |
|
---|
[24664] | 5 | MATLAB_PATH="/Applications/MATLAB_R2018a.app"
|
---|
[24650] | 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 \
|
---|
[25617] | 16 | --with-fortran-lib="-L/usr/local/Cellar/gcc/10.2.0/lib/gcc/10 -lgfortran" \
|
---|
[24650] | 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-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
| 22 | --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
| 23 | --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
|
---|
[24824] | 24 | --with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
|
---|
| 25 | --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install \
|
---|
[24650] | 26 | --with-dakota-dir=${ISSM_DIR}/externalpackages/dakota/install \
|
---|
| 27 | --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
|
---|
| 28 | --with-chaco-dir=${ISSM_DIR}/externalpackages/chaco/install \
|
---|
| 29 | --with-m1qn3-dir=${ISSM_DIR}/externalpackages/m1qn3/install \
|
---|
| 30 | --with-semic-dir=${ISSM_DIR}/externalpackages/semic/install \
|
---|
| 31 | '
|
---|
| 32 |
|
---|
[24676] | 33 | #-------------------#
|
---|
| 34 | # External Packages #
|
---|
| 35 | #-------------------#
|
---|
[24650] | 36 |
|
---|
| 37 | #List of external pakages to be installed and their installation scripts
|
---|
| 38 | EXTERNALPACKAGES="
|
---|
| 39 | autotools install.sh
|
---|
| 40 | cmake install.sh
|
---|
[25674] | 41 | petsc install-3.14-mac.sh
|
---|
[24824] | 42 | gsl install.sh
|
---|
| 43 | boost install-1.7-mac.sh
|
---|
[24650] | 44 | dakota install-6.2-mac.sh
|
---|
| 45 | triangle install-mac.sh
|
---|
| 46 | chaco install.sh
|
---|
| 47 | m1qn3 install.sh
|
---|
| 48 | semic install.sh
|
---|
| 49 | shell2junit install.sh
|
---|
| 50 | "
|
---|
| 51 |
|
---|
[24676] | 52 | #---------#
|
---|
| 53 | # Testing #
|
---|
| 54 | #---------#
|
---|
[24650] | 55 |
|
---|
[25189] | 56 | # Test suites
|
---|
| 57 | MATLAB_TEST=1
|
---|
| 58 | PYTHON_TEST=1
|
---|
| 59 | JAVASCRIPT_TEST=0
|
---|
| 60 | EXAMPLES_TEST=0
|
---|
| 61 |
|
---|
[24650] | 62 | # Number of CPUs used in ISSM compilation
|
---|
| 63 | #
|
---|
| 64 | # NOTE: One is usually safer as some packages are very sensitive to parallel
|
---|
| 65 | # compilation
|
---|
| 66 | #
|
---|
| 67 | NUMCPUS_INSTALL=4
|
---|
| 68 |
|
---|
| 69 | # Number of CPUs used in the nightly runs
|
---|
[24661] | 70 | NUMCPUS_RUN=2
|
---|
[24650] | 71 |
|
---|
| 72 | # Nightly run options
|
---|
| 73 | #
|
---|
[24660] | 74 | # See documentation in test/NightlyRun/runme.* for more information.
|
---|
[24650] | 75 | #
|
---|
| 76 | # NOTE:
|
---|
[25127] | 77 | # - Errors are large for tests 234, 235, 418, and 420 under MATLAB
|
---|
[25174] | 78 | # - Tests 444 and 445 fail intermittently under MATLAB with "Index exceeds array bounds."
|
---|
[25115] | 79 | # - Errors are large for tests 234 418 and 420 under Python
|
---|
[25111] | 80 | # - See test417.py for why it is excluded
|
---|
[25176] | 81 | # - Test 444 fails intermittently under Python with "IndexError: list index out of range"
|
---|
[24650] | 82 | #
|
---|
[25656] | 83 | MATLAB_NROPTIONS="'id',[IdFromString('Dakota')],'exclude',[234 235 418 420 444 445]"
|
---|
[25699] | 84 | PYTHON_NROPTIONS="--include_name 'Dakota' --exclude 234 417 418 420 444 445"
|
---|