-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHG: Fixes for gfortran path in rpath; new config for CodeQL
- Loading branch information
1 parent
0cb8aca
commit 1e3507d
Showing
4 changed files
with
104 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#--------------------# | ||
# ISSM Configuration # | ||
#--------------------# | ||
|
||
ISSM_CONFIG='\ | ||
--prefix=${ISSM_DIR} \ | ||
--disable-static \ | ||
--enable-development \ | ||
--enable-debugging \ | ||
--with-numthreads=4 \ | ||
--with-fortran-lib="-L/usr/lib/x86_64-linux-gnu -lgfortran" \ | ||
--with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \ | ||
--with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \ | ||
--with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \ | ||
--with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \ | ||
--with-parmetis-dir=${ISSM_DIR}/externalpackages/petsc/install \ | ||
--with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \ | ||
--with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \ | ||
--with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \ | ||
--with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \ | ||
--with-m1qn3-dir=${ISSM_DIR}/externalpackages/m1qn3/install \ | ||
--with-semic-dir=${ISSM_DIR}/externalpackages/semic/install \ | ||
' | ||
|
||
#-------------------# | ||
# External Packages # | ||
#-------------------# | ||
|
||
EXTERNALPACKAGES=" | ||
autotools install-linux.sh | ||
cmake install.sh | ||
petsc install-3.20-linux.sh | ||
triangle install-linux.sh | ||
m1qn3 install-linux.sh | ||
semic install.sh | ||
shell2junit install.sh | ||
" | ||
|
||
#---------# | ||
# Testing # | ||
#---------# | ||
|
||
# Test suites | ||
MATLAB_TEST=0 | ||
PYTHON_TEST=0 | ||
JAVASCRIPT_TEST=0 | ||
EXAMPLES_TEST=0 | ||
|
||
# Number of CPUs used in ISSM compilation | ||
# | ||
# NOTE: One is usually safer as some packages are very sensitive to parallel | ||
# compilation. | ||
# | ||
NUMCPUS_INSTALL=4 | ||
|
||
# Number of CPUs used in the nightly runs | ||
NUMCPUS_RUN=1 | ||
|
||
# Nightly run options | ||
# | ||
# See documentation in test/NightlyRun/runme.* for more information. | ||
# | ||
MATLAB_NROPTIONS="" | ||
PYTHON_NROPTIONS="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters