Skip to content

Commit

Permalink
fix: e2e labels (#9609)
Browse files Browse the repository at this point in the history
These use hyphens while internally things now use underscores
  • Loading branch information
ludamad authored Oct 30, 2024
1 parent 722ec5c commit ed1deb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion scripts/ci/get_bench_jobs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=()
Expand Down
3 changes: 2 additions & 1 deletion scripts/ci/get_e2e_jobs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit ed1deb9

Please sign in to comment.