source: issm/trunk-jpl/jenkins/macosx_pine-island@ 24399

Last change on this file since 24399 was 24399, checked in by jdquinn, 5 years ago

BUG: Committed with bad copy/paste

  • Property svn:executable set to *
File size: 2.1 KB
RevLine 
[20100]1#-------------------------------#
2# 1: ISSM general configuration #
3#-------------------------------#
4
[24333]5# MATLAB path
[23275]6MATLAB_PATH="/Applications/MATLAB_R2015b.app"
[20338]7
[24333]8# ISSM CONFIGURATION
[20100]9ISSM_CONFIG='--prefix=$ISSM_DIR \
[20338]10 --with-matlab-dir=$MATLAB_PATH \
[24333]11 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
12 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
[24394]13 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
[24333]14 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
15 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
16 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
17 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \
[20100]18 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
[24333]19 --with-chaco-dir=$ISSM_DIR/externalpackages/chaco/install \
[20100]20 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
[23554]21 --with-semic-dir=$ISSM_DIR/externalpackages/semic/install \
[20233]22 --with-numthreads=4 \
[20100]23 --enable-debugging \
[24348]24 --enable-development \
[24333]25'
[20100]26
[24333]27# Test suites
[20100]28MATLAB_TEST=1
[24198]29PYTHON_TEST=0
[24333]30JAVASCRIPT_TEST=0
31EXAMPLES_TEST=0
[20100]32
33#-----------------------------------#
34# 3: External packages installation #
35#-----------------------------------#
36
[24333]37# List of external pakages to be installed and their installation scripts
38EXTERNALPACKAGES="
39 autotools install.sh
40 cmake install.sh
[24399]41 mpich install-3.2-mac.sh
42 petsc install-3.7-mac.sh
[24333]43 triangle install-macosx64.sh
[24348]44 chaco install.sh
[24333]45 m1qn3 install.sh
46 semic install.sh
47 shell2junit install.sh
48"
[20100]49
[20402]50#-----------------#
51# 4: test options #
52#-----------------#
[20100]53
[24277]54# Number of CPUs used in ISSM compilation
55#
56# NOTE: One is usually safer as some packages are very sensitive to parallel
[24394]57# compilation
[24277]58#
[24333]59NUMCPUS_INSTALL=8
[20100]60
[24277]61# Number of CPUs used in the nightly runs
[24333]62NUMCPUS_RUN=8
[20100]63
[24277]64# Nightly run options
65#
[24394]66# See documentation in test/NightlyRun/runme.* for more information
[24277]67#
68# NOTE:
69# - test701.m is skipped because it uses full Stokes equations
70#
[24300]71MATLAB_NROPTIONS="'exclude',[701,702,703,435,IdFromString('Dakota')]"
[23155]72PYTHON_NROPTIONS="--exclude_name 'Dakota'"
Note: See TracBrowser for help on using the repository browser.