From: Lott, Christopher (cl778h) Date: Wed, 27 May 2020 20:47:31 +0000 (-0400) Subject: Revise trigger file path to A1 docker and verify jobs X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=ci-management.git;a=commitdiff_plain;h=4212ad75ae0cbb68ab3c6d220e5d04e0641672e6 Revise trigger file path to A1 docker and verify jobs Repair pattern to ignore changes in docs/ and releases/ subdirectories, to skip tox-ing and docker-ing when no Python code changes. Previous attempt had one too many negative-match ?! operator. Signed-off-by: Lott, Christopher (cl778h) Change-Id: I77566275a278663df84c4af26b8f347a5018c018 --- diff --git a/jjb/ric-plt-a1/ric-plt-a1.yaml b/jjb/ric-plt-a1/ric-plt-a1.yaml index d8338ec4..7e04756e 100644 --- a/jjb/ric-plt-a1/ric-plt-a1.yaml +++ b/jjb/ric-plt-a1/ric-plt-a1.yaml @@ -36,7 +36,7 @@ # do not trigger on changes in docs, releases gerrit_trigger_file_paths: - compare-type: REG_EXP - pattern: '^((?!docs/|?!releases/|\/COMMIT_MSG).)*$' + pattern: '^((?!docs\/|releases\/|\/COMMIT_MSG).)*$' stream: - master: branch: master @@ -56,7 +56,7 @@ # do not trigger on changes in docs, releases gerrit_trigger_file_paths: - compare-type: REG_EXP - pattern: '^((?!docs/|?!releases/|\/COMMIT_MSG).)*$' + pattern: '^((?!docs\/|releases\/|\/COMMIT_MSG).)*$' stream: # run verify on all branches # the ANT pattern is **/{branch}, we are exploiting that.