source: issm/trunk/jenkins/linux64_ross_test@ 20500

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

merged trunk-jpl and trunk for revision 20497

File size: 2.4 KB
Line 
1#
2#-------------------------------#
3# 1: ISSM general configuration #
4#-------------------------------#
5
6#MATLAB path
7MATLAB_PATH="/usr/local/MATLAB/R2015a"
8
9#ISSM CONFIGURATION
10ISSM_CONFIG='--prefix=$ISSM_DIR\
11 --disable-static \
12 --with-matlab-dir=$MATLAB_PATH \
13 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
14 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
15 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich" \
16 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \
17 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
18 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
19 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
20 --with-python-dir=/usr\
21 --with-python-numpy-dir=/usr/lib/python2.7/dist-packages/numpy\
22 --with-chaco-dir="$ISSM_DIR/externalpackages/chaco/install" \
23 --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install \
24 --with-boost-dir=$ISSM_DIR/externalpackages/boost/install/ \
25 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9/ -lgfortran" \
26 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
27 --with-numthreads=4 \
28 --enable-development \
29 --enable-debugging '
30
31#PYTHON and MATLAB testing
32#MATLAB_TEST=1
33#PYTHON_TEST=1
34
35#-----------------------------------#
36# 3: External packages installation #
37#-----------------------------------#
38
39#List of external pakages to be installed and their installation scripts
40EXTERNALPACKAGES="autotools install.sh
41 mpich install-3.0-linux64.sh
42 petsc install-3.6-linux64.sh
43 triangle install-linux64.sh
44 boost install.sh
45 dakota install-6.2-linux64.sh
46 chaco install.sh
47 m1qn3 install.sh
48 shell2junit install.sh"
49
50#-----------------#
51# 4: test options #
52#-----------------#
53
54#number of cpus used in ISSM installation and compilation (one is usually
55#safer as some packages are very sensitive to parallel compilation)
56NUMCPUS_INSTALL=6
57
58#number of cpus used in the nightly runs.
59NUMCPUS_RUN=3
60
61#Nightly run options. The matlab routine runme.m will be called
62#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
63#by Matlab and runme.m
64#ex: "'id',[101 102 103]"
65PYTHON_NROPTIONS="--exclude 119 243 514 701 702 435"
66MATLAB_NROPTIONS="'exclude',[119,243,514,701,702,435]"
Note: See TracBrowser for help on using the repository browser.