source: issm/trunk-jpl/jenkins/pine_island-mac-solid_earth-lambert@ 26262

Last change on this file since 26262 was 26262, checked in by jdquinn, 4 years ago

CHG: New Jenkins script and removal of failing tests from SE builds so that Lambert can continue to debug

  • Property svn:executable set to *
File size: 2.7 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-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
40EXTERNALPACKAGES="
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
66MATLAB_TEST=1
67PYTHON_TEST=1
68JAVASCRIPT_TEST=0
69EXAMPLES_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#
76NUMCPUS_INSTALL=4
77
78# Number of CPUs used in the nightly runs
79NUMCPUS_RUN=2
80
81# Nightly run options
82#
83# See documentation in test/NightlyRun/runme.* for more information.
84#
85# NOTE:
86# - Excluding 2006 until it can be debugged (file I/O)
87#
88MATLAB_NROPTIONS="'benchmark','slc','exclude',[2006]"
89PYTHON_NROPTIONS="--benchmark slc --exclude 2005 2006"
Note: See TracBrowser for help on using the repository browser.