Skip to content

Commit

Permalink
Make sure things set in the environment take priority over the ci_con…
Browse files Browse the repository at this point in the history
…fig.sh settings
  • Loading branch information
Caspar van Leeuwen committed Mar 12, 2024
1 parent f88cf17 commit 71a7e0b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CI/aws_mc/ci_config.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Configurable items
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes"
if [ -z "${REFRAME_ARGS}" ]; then
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes"
fi
# For now, software.eessi.io is not yet deployed on login nodes of the AWS MC cluster
EESSI_CVMFS_REPO="/cvmfs/pilot.eessi-hpc.org"
if [ -z "${EESSI_CVMFS_REPO}" ]; then
EESSI_CVMFS_REPO="/cvmfs/pilot.eessi-hpc.org"
fi
4 changes: 3 additions & 1 deletion CI/it4i_karolina/ci_config.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Configurable items
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes"
if [ -z "${REFRAME_ARGS}" ]; then
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes"
fi
4 changes: 3 additions & 1 deletion CI/izum_vega/ci_config.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Configurable items
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes"
if [ -z "${REFRAME_ARGS}" ]; then
REFRAME_ARGS="--tag CI --tag 1_node|2_nodes"
fi

0 comments on commit 71a7e0b

Please sign in to comment.