source: issm/trunk-jpl/jenkins/linux64_ross_ad@ 24300

Last change on this file since 24300 was 24300, checked in by jdquinn, 6 years ago

CHG: Excluding test3010 from ADOL-C builds; minor change to macOS

  • Property svn:executable set to *
File size: 2.6 KB
RevLine 
[19675]1#
2#-------------------------------#
3# 1: ISSM general configuration #
4#-------------------------------#
5
[20338]6#MATLAB path
7MATLAB_PATH="/usr/local/MATLAB/R2015a"
8
[23121]9#ISSM CONFIGURATION
[24232]10ISSM_CONFIG='--prefix=$ISSM_DIR \
[19675]11 --disable-static \
12 --without-kriging \
13 --without-kml \
[21571]14 --without-GiaIvins \
[22017]15 --without-Love \
[20338]16 --with-matlab-dir=$MATLAB_PATH \
[23121]17 --with-python-dir=/usr \
[24237]18 --with-python-numpy-dir=/usr/local/lib/python2.7/dist-packages/numpy \
[24232]19 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9 -lgfortran" \
20 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
21 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
22 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
23 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
24 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
25 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
[21095]26 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
[24232]27 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \
28 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \
[24233]29 --with-numthreads=4 \
[21095]30 --enable-development \
[24232]31 --enable-debugging'
[19675]32
33#PYTHON and MATLAB testing
34MATLAB_TEST=1
[19968]35PYTHON_TEST=1
[19675]36
37#-----------------------------------#
38# 3: External packages installation #
39#-----------------------------------#
40
41#List of external pakages to be installed and their installation scripts
[24232]42#
43# NOTE: The PETSc libraries are compiled but not used as they conflict with
44# ADOL-C: PETSc is really just being used as an installer for other
45# external packages.
[22571]46EXTERNALPACKAGES="autotools install.sh
[23121]47 cmake install.sh
[21694]48 mpich install-3.2-linux64.sh
[20554]49 petsc install-3.7-linux64.sh
[23121]50 triangle install-linux64.sh
51 gsl install-linux64.sh
[19675]52 adolc install.sh
53 shell2junit install.sh"
54
[20402]55#-----------------#
56# 4: test options #
57#-----------------#
[19675]58
[24300]59# Number of CPUs used in ISSM compilation
60#
61# NOTE: One is usually safer as some packages are very sensitive to parallel
62# compilation.
63#
[20052]64NUMCPUS_INSTALL=5
[19675]65
[24300]66# Number of CPUs used in the nightly runs
[20052]67NUMCPUS_RUN=4
[19675]68
[24300]69# Nightly run options
70#
71# See documentation in test/NightlyRun/runme.* for more information.
72#
73# NOTE:
74# - test3010 is skipped because it triggers GEMB module and a subsequent
75# failure on ampioff configuration (really, likely a segmentation fault)
76#
77MATLAB_NROPTIONS="'benchmark','adolc','id',[3001:3019],'exclude',3010"
78PYTHON_NROPTIONS="--benchmark=adolc -i 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 --exclude=3010"
Note: See TracBrowser for help on using the repository browser.