source: issm/trunk-jpl/jenkins/pine_island-mac-binaries-solid_earth@ 25687

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

CHG: Test suites; clean up

  • Property svn:executable set to *
File size: 2.6 KB
RevLine 
[24649]1#--------------------#
2# ISSM Configuration #
3#--------------------#
[20100]4
[24665]5MATLAB_PATH="/Applications/MATLAB_R2018a.app"
[20338]6
[24649]7# NOTE:
8# - We can disable dependency tracking in the Autotools because the binaries
9# should always be a one-time build.
10#
[24427]11ISSM_CONFIG='\
[24649]12 --prefix=${ISSM_DIR} \
13 --enable-standalone-executables \
14 --enable-standalone-modules \
15 --enable-standalone-libraries \
16 --disable-dependency-tracking \
17 --with-matlab-dir=${MATLAB_PATH} \
18 --with-python-dir=/System/Library/Frameworks/Python.framework/Versions/2.7 \
19 --with-python-numpy-dir=/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy \
[25617]20 --with-fortran-lib="/usr/local/Cellar/gcc/10.2.0/lib/gcc/10/libgfortran.a /usr/local/Cellar/gcc/10.2.0/lib/gcc/10/libquadmath.a /usr/local/Cellar/gcc/10.2.0/lib/gcc/10/gcc/x86_64-apple-darwin15/10.2.0/libgcc.a" \
[24649]21 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
[24637]22 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
[24649]23 --with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
24 --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
25 --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
26 --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
[25244]27 --with-hdf5-dir=${ISSM_DIR}/externalpackages/petsc/install \
[24649]28 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
29 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
[25244]30 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install
[24333]31'
[20100]32
[24649]33#-------------------#
34# External Packages #
35#-------------------#
[20100]36
[25244]37#List of external pakages to be installed and their installation scripts
[24333]38EXTERNALPACKAGES="
[25244]39 autotools install.sh
40 cmake install.sh
[25676]41 petsc install-3.14-mac-static.sh
[25244]42 boost install-1.7-mac-static.sh
43 triangle install-mac-static.sh
44 chaco install.sh
45 m1qn3 install.sh
46 semic install.sh
47 curl install-7.67-static.sh
48 netcdf install-4.7-mac-parallel-static.sh
49 proj install-6.2-static.sh
50 gdal install-3-python-netcdf-static.sh
51 gshhg install.sh
52 gmt install-6.0-mac-static.sh
53 gmsh install-4-static.sh
54 shell2junit install.sh
[24333]55"
[20100]56
[24649]57#---------#
58# Testing #
59#---------#
[20100]60
[25244]61# Test suites
62MATLAB_TEST=0
63PYTHON_TEST=0
64JAVASCRIPT_TEST=0
65EXAMPLES_TEST=0
66
[24277]67# Number of CPUs used in ISSM compilation
68#
69# NOTE: One is usually safer as some packages are very sensitive to parallel
[24394]70# compilation
[24277]71#
[25244]72NUMCPUS_INSTALL=4
[20100]73
[24277]74# Number of CPUs used in the nightly runs
[24649]75NUMCPUS_RUN=1
[20100]76
[24277]77# Nightly run options
78#
[24649]79# See documentation in test/NightlyRun/runme.* for more information.
[24277]80#
[25244]81MATLAB_NROPTIONS=""
[24649]82PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.