From 4ea2c41403cc0ec3fd7c6dc7aecb35d95b7a2785 Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 30 Oct 2024 17:28:37 -0400 Subject: [PATCH 1/2] Update get_e2e_jobs.sh --- scripts/ci/get_e2e_jobs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/get_e2e_jobs.sh b/scripts/ci/get_e2e_jobs.sh index cc8468935ba..2d33dd12f37 100755 --- a/scripts/ci/get_e2e_jobs.sh +++ b/scripts/ci/get_e2e_jobs.sh @@ -5,7 +5,8 @@ set -eu cd "$(dirname "$0")"/../.. BRANCH=$1 -LABELS=$2 +# support labels with hyphens for backwards compatibility: +LABELS=$(echo $2 | sed 's/-/_/g') # Function to parse YAML and extract test names get_test_names() { From 497126bf64afc6a0d9bcc8b504424f3dd54350bc Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 30 Oct 2024 17:29:13 -0400 Subject: [PATCH 2/2] Update get_bench_jobs.sh --- scripts/ci/get_bench_jobs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/get_bench_jobs.sh b/scripts/ci/get_bench_jobs.sh index a93ef001f9a..d71a266ab4a 100755 --- a/scripts/ci/get_bench_jobs.sh +++ b/scripts/ci/get_bench_jobs.sh @@ -5,7 +5,8 @@ set -eu cd "$(dirname "$0")"/../.. BRANCH=$1 -LABELS=$2 +# support labels with hyphens for backwards compatibility: +LABELS=$(echo $2 | sed 's/-/_/g') # Define the allow_list allow_list=()