-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable override of variables for tests
This change enables override of the environment variables used for CI tests. This change is meant for running the tests locally so that the tests can be modified. For example, in order to test with a new compiler one might run: $ CC=gcc-13 ./scripts/ci-gcc-11-C-single-real.sh to override the default C compiler in test. Signed-off-by: Nicolas Bock <nicolasbock@gmail.com>
- Loading branch information
1 parent
eaae21f
commit 157d394
Showing
5 changed files
with
49 additions
and
49 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
export CC=gcc | ||
export CXX=g++ | ||
export FC=gfortran | ||
export BML_INTERNAL_BLAS=no | ||
export BML_MPI=no | ||
export BML_MPIEXEC_NUMPROCS_FLAG=-n | ||
export BML_MPIEXEC_NUMPROCS=4 | ||
export BML_OPENMP=no | ||
export BML_VALGRIND=no | ||
export BML_SCALAPACK=no | ||
export BUILD_SHARED_LIBS=no | ||
export VERBOSE_MAKEFILE=yes | ||
export CMAKE_BUILD_TYPE=Debug | ||
export CC=${CC:-gcc} | ||
export CXX=${CXX:-g++} | ||
export FC=${FC:-gfortran} | ||
export BML_INTERNAL_BLAS=${BML_INTERNAL_BLAS:-no} | ||
export BML_MPI=${BML_MPI:-no} | ||
export BML_MPIEXEC_NUMPROCS_FLAG=${BML_MPIEXEC_NUMPROCS_FLAG:-'-n'} | ||
export BML_MPIEXEC_NUMPROCS=${BML_MPIEXEC_NUMPROCS:-4} | ||
export BML_OPENMP=${BML_OPENMP:-no} | ||
export BML_VALGRIND=${BML_VALGRIND:-no} | ||
export BML_SCALAPACK=${BML_SCALAPACK:-no} | ||
export BUILD_SHARED_LIBS=${BUILD_SHARED_LIBS:-no} | ||
export VERBOSE_MAKEFILE=${VERBOSE_MAKEFILE:-yes} | ||
export CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-Debug} |
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
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