Skip to content

Commit

Permalink
Merge pull request #1584 from rzetelskik/artifacts-env-var-fix
Browse files Browse the repository at this point in the history
Check for presence of ARTIFACTS env var in e2e script
  • Loading branch information
scylla-operator-bot[bot] authored Nov 22, 2023
2 parents 6fdc307 + ae6867b commit 51600cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hack/.ci/run-e2e-gke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ if [ -z ${SO_IMAGE+x} ]; then
exit 2
fi

if [ -z ${ARTIFACTS+x} ]; then
echo "ARTIFACTS can't be empty" > /dev/stderr
exit 2
fi

SO_DISABLE_NODECONFIG=${SO_DISABLE_NODECONFIG:-false}

field_manager=run-e2e-script
Expand Down

0 comments on commit 51600cb

Please sign in to comment.