Revise trigger file path to A1 docker and verify jobs 84/3884/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Wed, 27 May 2020 20:47:31 +0000 (16:47 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Wed, 27 May 2020 20:50:07 +0000 (16:50 -0400)
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) <cl778h@att.com>
Change-Id: I77566275a278663df84c4af26b8f347a5018c018

jjb/ric-plt-a1/ric-plt-a1.yaml

index d8338ec..7e04756 100644 (file)
@@ -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.