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

Last change on this file since 20243 was 20243, checked in by Mathieu Morlighem, 9 years ago

CHG: fixing Mac tests on jenkins

  • Property svn:executable set to *
File size: 2.7 KB
Line 
1
2#-------------------------------#
3# 1: ISSM general configuration #
4#-------------------------------#
5
6#ISSM CONFIGURATION
7ISSM_CONFIG='--prefix=$ISSM_DIR \
8 --with-matlab-dir=$MATLAB_DIR \
9 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
10 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
11 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lpmpich -lmpich -lmpl" \
12 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \
13 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/ \
14 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
15 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
16 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
17 --with-numthreads=4 \
18 --enable-debugging \
19 --enable-development'
20
21#MATLAB path
22MATLAB_PATH="/Applications/MATLAB_R2015b.app/"
23
24#PYTHON and MATLAB testing
25MATLAB_TEST=1
26PYTHON_TEST=0
27
28#execution path used for parallel runs
29EXECUTION_PATH=$ISSM_DIR/execution
30
31#repo:
32REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"
33SVN='/usr/local/bin/svn'
34SVNVERSION='/usr/local/bin/svnversion'
35
36#-----------------------------------#
37# 3: External packages installation #
38#-----------------------------------#
39
40#ISSM_EXTERNALPACKAGES can have 3 values:
41# - "install" install all external packages listed below
42# - "copy" copy existing directories (EXTERNALPACKAGESDIR)
43# - "none" leave external packages as is
44# ->skip to section 4
45ISSM_EXTERNALPACKAGES="install"
46EXTERNALPACKAGESDIR=$ISSM_DIR/externalpackages
47
48#List of external pakages to be installed and their installation scripts
49EXTERNALPACKAGES="autotools install.sh
50 cmake install.sh
51 matlab install.sh
52 mpich install-3.0-macosx64.sh
53 m1qn3 install.sh
54 petsc install-3.6-macosx64.sh
55 triangle install-macosx64.sh
56 shell2junit install.sh"
57
58#---------------------#
59# 4: ISSM Compilation #
60#---------------------#
61
62#ISSM_COMPILATION can have 2 values:
63# - "yes" compile ISSM
64# - "no" do not compile ISSM
65ISSM_COMPILATION="yes"
66
67#------------------------#
68# 5: Nightly run options #
69#------------------------#
70
71#number of cpus used in ISSM installation and compilation (one is usually
72#safer as some packages are very sensitive to parallel compilation)
73NUMCPUS_INSTALL=4
74
75#number of cpus used in the nightly runs.
76NUMCPUS_RUN=2
77
78#Nightly run options. The matlab routine runme.m will be called
79#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
80#by Matlab and runme.m
81#ex: "'id',[101 102 103]"
82## bamg mesh FS
83PYTHON_NROPTIONS=""
84MATLAB_NROPTIONS="'exclude',[119,243,514,701,702,703,435,IdFromString('Dakota')]"
Note: See TracBrowser for help on using the repository browser.