source: issm/trunk-jpl/jenkins/pine_island-mac-dakota@ 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.8 KB
Line 
1#--------------------#
2# ISSM Configuration #
3#--------------------#
4
5MATLAB_PATH="/Applications/MATLAB_R2018a.app"
6
7ISSM_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-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 \
24 --with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
25 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install \
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
33#-------------------#
34# External Packages #
35#-------------------#
36
37#List of external pakages to be installed and their installation scripts
38EXTERNALPACKAGES="
39 autotools install.sh
40 cmake install.sh
41 petsc install-3.14-mac.sh
42 gsl install.sh
43 boost install-1.7-mac.sh
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
52#---------#
53# Testing #
54#---------#
55
56# Test suites
57MATLAB_TEST=1
58PYTHON_TEST=1
59JAVASCRIPT_TEST=0
60EXAMPLES_TEST=0
61
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#
67NUMCPUS_INSTALL=4
68
69# Number of CPUs used in the nightly runs
70NUMCPUS_RUN=2
71
72# Nightly run options
73#
74# See documentation in test/NightlyRun/runme.* for more information.
75#
76# NOTE:
77# - Errors are large for tests 234, 235, 418, and 420 under MATLAB
78# - Tests 444 and 445 fail intermittently under MATLAB with "Index exceeds array bounds."
79# - Errors are large for tests 234 418 and 420 under Python
80# - See test417.py for why it is excluded
81# - Test 444 fails intermittently under Python with "IndexError: list index out of range"
82#
83MATLAB_NROPTIONS="'id',[IdFromString('Dakota')],'exclude',[234 235 418 420 444 445]"
84PYTHON_NROPTIONS="--include_name 'Dakota' --exclude 234 417 418 420 444 445"
Note: See TracBrowser for help on using the repository browser.