From 7495d19eacff08d7e83d783e4bc81897fe72980c Mon Sep 17 00:00:00 2001 From: norvell Date: Fri, 23 Sep 2022 09:29:40 +0000 Subject: [PATCH] Changed "\[evs[ -]non[ -]*be\]" to "\[evs[ -]*non[ -]*be\]" to allow any combinations of spaces/hyphens between EVS and non-be in the tag. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bdfefff19d..93fe2a758b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -305,7 +305,7 @@ self-test-on-merge-request: ### analyse test output # some helper variables - "|| true" to prevent failures from grep not finding anything - - evs_non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[evs[ -]non[ -]*be\]") || true + - evs_non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[evs[ -]*non[ -]*be\]") || true - non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[non[ -]*be\]") || true - run_errors=$(cat test_output.txt test_output_evs.txt | grep -c "test conditions had run errors") || true - bitexact=$(cat test_output.txt | grep -c "All [0-9]* tests are bitexact") || true -- GitLab