-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from laraPPr/update_CI_scripts
General config and `run_reframe.sh` for local and EESSI stack
- Loading branch information
Showing
4 changed files
with
136 additions
and
30 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,33 @@ | ||
# Configurable items | ||
if [ -z "${TEST_SUITE_PARTITION}" ]; then | ||
echo "You have to indicate on which partition the test-suite will run on vsc-Hortense" | ||
echo "This environment variable needs to be set TEST_SUITE_PARTITION=cpu_rome_256gb" | ||
echo "Can only set to 'cpu_rome_256gb' untill new functionality of 'sched_options' is part of" | ||
echo "the ReFrame release https://github.com/reframe-hpc/reframe/issues/2970" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${REFRAME_ARGS}" ]; then | ||
REFRAME_ARGS="--tag CI --tag 1_core --system hortense:${TEST_SUITE_PARTITION}" | ||
fi | ||
|
||
if [ -z "${UNSET_MODULEPATH}" ]; then | ||
export UNSET_MODULEPATH=False | ||
module --force purge | ||
fi | ||
|
||
if [ -z "${USE_EESSI_SOFTWARE_STACK}" ]; then | ||
export USE_EESSI_SOFTWARE_STACK=True | ||
fi | ||
|
||
if [ -z "${RFM_CONFIG_FILES}" ]; then | ||
export RFM_CONFIG_FILES="${TEMPDIR}/test-suite/config/vsc_hortense.py" | ||
fi | ||
|
||
if [ -z "${SET_LOCAL_MODULE_ENV}"]; then | ||
export SET_LOCAL_MODULE_ENV=True | ||
fi | ||
|
||
if [ -z "${LOCAL_MODULES}"]; then | ||
export LOCAL_MODULES="env/vsc/dodrio/${TEST_SUITE_PARTITION} env/slurm/dodrio/${TEST_SUITE_PARTITION}" | ||
fi |
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,33 @@ | ||
# Configurable items | ||
if [ -z "${TEST_SUITE_PARTITION}" ]; then | ||
echo "You have to indicate on which partition the test-suite will run on vsc-Hortense" | ||
echo "This environment variable needs to be set TEST_SUITE_PARTITION=cpu_rome_256gb" | ||
echo "Can only set to 'cpu_rome_256gb' untill new functionality of 'sched_options' is part of" | ||
echo "the ReFrame release https://github.com/reframe-hpc/reframe/issues/2970" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${REFRAME_ARGS}" ]; then | ||
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes --system hortense:${TEST_SUITE_PARTITION}" | ||
fi | ||
|
||
if [ -z "${USE_EESSI_SOFTWARE_STACK}" ]; then | ||
export USE_EESSI_SOFTWARE_STACK=False | ||
fi | ||
|
||
if [ -z "${RFM_CONFIG_FILES}" ]; then | ||
export RFM_CONFIG_FILES="${TEMPDIR}/test-suite/config/vsc_hortense.py" | ||
fi | ||
|
||
if [ -z "${UNSET_MODULEPATH}" ]; then | ||
export UNSET_MODULEPATH=False | ||
module --force purge | ||
fi | ||
|
||
if [ -z "${SET_LOCAL_MODULE_ENV}"]; then | ||
export SET_LOCAL_MODULE_ENV=True | ||
fi | ||
|
||
if [ -z "${LOCAL_MODULES}"]; then | ||
export LOCAL_MODULES="cluster/dodrio/${TEST_SUITE_PARTITION}" | ||
fi |
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