From fab91349f6b3dfdcc2b4049fe81fd1e8f972191e Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 11 Sep 2024 11:28:04 +0200 Subject: [PATCH] avoid running for 8.x in staging --- .buildkite/scripts/dra.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/scripts/dra.sh b/.buildkite/scripts/dra.sh index 2e34861702a..1e1e87f1e28 100644 --- a/.buildkite/scripts/dra.sh +++ b/.buildkite/scripts/dra.sh @@ -102,6 +102,7 @@ dra() { } dra "snapshot" "$dra_command" -if [[ "${DRA_BRANCH}" != "main" ]]; then +if [[ "${DRA_BRANCH}" != "main" && "${DRA_BRANCH}" != "8.x" ]]; then + echo "DRA_BRANCH is neither 'main' nor '8.x'" dra "staging" "$dra_command" fi