Browse Source

Ensure upgrade CI jobs are named correctly (#5909)

pull/5977/head
Maxime Guyot 4 years ago
committed by GitHub
parent
commit
bfa468c771
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 3 deletions
  1. 16
      tests/scripts/testcases_run.sh

16
tests/scripts/testcases_run.sh

@ -2,9 +2,19 @@
set -euxo pipefail
echo "CI_JOB_NAME is $CI_JOB_NAME"
pwd
ls
echo ${PWD}
if [[ "$CI_JOB_NAME" =~ "upgrade" ]]; then
if [ "${UPGRADE_TEST}" == "false" ]; then
echo "Job name contains 'upgrade', but UPGRADE_TEST='false'"
exit 1
fi
else
if [ "${UPGRADE_TEST}" != "false" ]; then
echo "UPGRADE_TEST!='false', but job names does not contain 'upgrade'"
exit 1
fi
fi
export ANSIBLE_REMOTE_USER=$SSH_USER
export ANSIBLE_BECOME=true

Loading…
Cancel
Save