source: issm/trunk-jpl/jenkins/ross-win-msys2-mingw-msmpi-basic@ 28038

Last change on this file since 28038 was 28038, checked in by jdquinn, 16 months ago

CHG: Cleanup of chaco and semic from build configs where appropriate

File size: 2.1 KB
RevLine 
[28017]1MATLAB_PATH=$(cygpath -u $(cygpath -ms "/c/Program Files/MATLAB/R2023b"))
[26039]2
[26034]3ISSM_CONFIG='\
4 --prefix=${ISSM_DIR} \
5 --enable-development \
6 --enable-debugging \
7 --with-numthreads=4 \
8 --with-vendor="win-msys2" \
[26752]9 --with-matlab-dir="${MATLAB_PATH}" \
[26034]10 --with-mpi-include="${MSMPI_ROOT}/include" \
[27965]11 --with-mpi-libdir="-Wl,-L${MSMPI_ROOT}/lib" \
12 --with-mpi-libflags="-Wl,-lmsmpi" \
[27947]13 --with-fortran-lib="-Wl,-L/c/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0 -Wl,-lgfortran" \
[26034]14 --with-metis-dir="${ISSM_DIR}/externalpackages/petsc/install" \
15 --with-parmetis-dir="${ISSM_DIR}/externalpackages/petsc/install" \
16 --with-blas-lapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \
[26752]17 --with-scalapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \
18 --with-mumps-dir="${ISSM_DIR}/externalpackages/petsc/install" \
[26034]19 --with-petsc-dir="${ISSM_DIR}/externalpackages/petsc/install" \
20 --with-triangle-dir="${ISSM_DIR}/externalpackages/triangle/install" \
[26752]21 --with-m1qn3-dir="${ISSM_DIR}/externalpackages/m1qn3/install" \
[28038]22 --with-semic-dir=${ISSM_DIR}/externalpackages/semic/install \
[26034]23'
24
25#-------------------#
26# External Packages #
27#-------------------#
28
[27567]29#List of external packages to be installed and their installation scripts
[26034]30EXTERNALPACKAGES="
[26039]31 msmpi install.sh
[26034]32 petsc install-3.14-win-msys2-mingw-msmpi.sh
33 triangle install-win-msys2-mingw.sh
[26145]34 m1qn3 install.sh
[28038]35 semic install.sh
[26034]36 shell2junit install.sh
37"
38
39#---------#
40# Testing #
41#---------#
42
43# Test suites
44MATLAB_TEST=1
45PYTHON_TEST=0
46JAVASCRIPT_TEST=0
47EXAMPLES_TEST=0
48
49# Number of CPUs used in ISSM compilation
50#
51# NOTE: One is usually safer as some packages are very sensitive to parallel
52# compilation
53#
54NUMCPUS_INSTALL=4
55
56# Number of CPUs used in the nightly runs
[26765]57NUMCPUS_RUN=2
[26034]58
59# Nightly run options
60#
61# See documentation in test/NightlyRun/runme.* for more information
62#
[26156]63# NOTE:
[26447]64# - Tests 125, 126, and 129 are skipped because restart is not yet implemented
65# for Windows (under MSYS2)
[26156]66# - test701 is skipped because it uses full Stokes equations
67#
[26447]68MATLAB_NROPTIONS="'exclude',[IdFromString('Dakota'),125,126,129,435,701,702,703]"
[26034]69PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.