#--------------------#
# ISSM Configuration #
#--------------------#

MATLAB_PATH="/usr/local/MATLAB/R2019b"
ISSM_CONFIG='\
	--prefix=${ISSM_DIR} \
	--disable-static \
	--enable-development \
	--enable-debugging \
	--with-numthreads=4 \
	--without-kriging \
	--without-kml \
	--without-GiaIvins \
	--without-Love \
	--with-matlab-dir=${MATLAB_PATH} \
	--with-python-dir=/usr \
	--with-python-numpy-dir=/usr/local/lib/python2.7/dist-packages/numpy \
	--with-fortran-lib="-L/usr/lib/x86_64-linux-gnu -lgfortran" \
	--with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include  \
	--with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
	--with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
	--with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
	--with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
	--with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
	--with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
	--with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
	--with-adolc-dir=${ISSM_DIR}/externalpackages/adolc/install \
'

#-------------------#
# External Packages #
#-------------------#

# NOTE: The PETSc libraries are compiled but not used as they conflict with
#		ADOL-C: PETSc is really just being used as an installer for other
#		external packages.
#
EXTERNALPACKAGES="
	autotools	install-debian-linux.sh
	cmake		install.sh
	petsc		install-3.12-linux.sh
	gsl			install.sh
	triangle	install-linux.sh
	adolc		install.sh
	shell2junit	install.sh
"

#---------#
# Testing #
#---------#

# Test suites
MATLAB_TEST=1
PYTHON_TEST=1
JAVASCRIPT_TEST=0
EXAMPLES_TEST=0

# Number of CPUs used in ISSM compilation
#
# NOTE: One is usually safer as some packages are very sensitive to parallel
# 		compilation.
#
NUMCPUS_INSTALL=8

# Number of CPUs used in the nightly runs
NUMCPUS_RUN=2

# Nightly run options
#
# See documentation in test/NightlyRun/runme.* for more information.
#
# NOTE:
# - test3010 is skipped because it triggers GEMB module and a subsequent
#	failure on ampioff configuration (really, likely a segmentation fault)
#
MATLAB_NROPTIONS="'benchmark','adolc','id',[3001:3019],'exclude',3010"
PYTHON_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"
