source: issm/trunk/jenkins/linux64_ross_test@ 22758

Last change on this file since 22758 was 22758, checked in by Mathieu Morlighem, 7 years ago

merged trunk-jpl and trunk for revision 22757

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