Skip to content

Commit

Permalink
Don't let github actions script run locally
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHogan committed Feb 18, 2022
1 parent 274393c commit db56253
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/cluster/multi_node_ci_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

set -x -e

if [[ "${CI}" != "true" ]]; then
echo "This script is only meant to be run within Github actions"
exit 1
fi

. cluster_utils.sh

# Create ssh keys for the cluster to use
Expand Down

0 comments on commit db56253

Please sign in to comment.