From e199c76e31432ad8a4fb170f583ed7c7db102627 Mon Sep 17 00:00:00 2001 From: ludamad Date: Mon, 4 Nov 2024 19:41:20 -0500 Subject: [PATCH 1/2] Update get_bench_jobs.sh --- scripts/ci/get_bench_jobs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/get_bench_jobs.sh b/scripts/ci/get_bench_jobs.sh index 83fb236303f..1cd0c1d5cdb 100755 --- a/scripts/ci/get_bench_jobs.sh +++ b/scripts/ci/get_bench_jobs.sh @@ -24,7 +24,7 @@ allow_list+=("${input_labels[@]}") test_list=$(get_test_names | grep 'bench' | xargs echo) # If branch is master or allow_list contains 'bench-all', return full list -if [[ "$BRANCH" == "master" ]] || [[ " ${allow_list[@]} " =~ "bench-all" ]]; then +if [[ "$BRANCH" == "master" ]] || [[ " ${allow_list[@]} " =~ "bench_all" ]]; then # print as JSON list echo "$test_list" | jq -Rc 'split(" ")' exit 0 From 06e1a05138fd36d6b850c3633de7d94be2f27f5f Mon Sep 17 00:00:00 2001 From: ludamad Date: Mon, 4 Nov 2024 19:41:54 -0500 Subject: [PATCH 2/2] Update get_e2e_jobs.sh --- scripts/ci/get_e2e_jobs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/get_e2e_jobs.sh b/scripts/ci/get_e2e_jobs.sh index 30563d79f08..772c2c6b53a 100755 --- a/scripts/ci/get_e2e_jobs.sh +++ b/scripts/ci/get_e2e_jobs.sh @@ -52,7 +52,7 @@ allow_list+=("${input_labels[@]}") test_list=$(echo "${full_list[@]}" | grep -v 'base' | grep -v 'bench' | grep -v "network" | grep -v 'devnet' | xargs echo) # # If branch is master or allow_list contains 'e2e-all', return full list -if [[ "$BRANCH" == "master" ]] || [[ " ${allow_list[@]} " =~ "e2e-all" ]]; then +if [[ "$BRANCH" == "master" ]] || [[ " ${allow_list[@]} " =~ "e2e_all" ]]; then # print as JSON list echo "$test_list" | jq -Rc 'split(" ")' exit 0