From: Anil Belur Date: Thu, 20 Sep 2018 15:54:09 +0000 (+0530) Subject: Trigger jjb-verify on all changes in jjb/shell dir X-Git-Tag: v0.25.0^2 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=316e44ccbc6d188252c23ef4fb74631b68bd035e;hp=-c;p=releng%2Fglobal-jjb.git Trigger jjb-verify on all changes in jjb/shell dir Replace single file regex with change to any file in shell dir. Change-Id: I0ca9a9d1bddd2c21034e70c1413f7d2a64d8ee58 Signed-off-by: Anil Belur --- 316e44ccbc6d188252c23ef4fb74631b68bd035e diff --git a/jjb/lf-ci-jobs.yaml b/jjb/lf-ci-jobs.yaml index 502b1cf6..9cfa4b82 100644 --- a/jjb/lf-ci-jobs.yaml +++ b/jjb/lf-ci-jobs.yaml @@ -101,27 +101,18 @@ submodule-recursive: true gerrit_trigger_file_paths: - - compare-type: REG_EXP - pattern: '.*\.groovy' - - compare-type: REG_EXP - pattern: '.*\.sh' - - compare-type: REG_EXP - pattern: '.*\.bat' - - compare-type: REG_EXP - pattern: '.*\.ps1' - compare-type: REG_EXP pattern: 'jjb/.*' - compare-type: REG_EXP pattern: 'global-jjb' + - compare-type: REG_EXP + pattern: 'shell/.*' # github_included_regions MUST match gerrit_trigger_file_paths github_included_regions: - - '.*\.groovy' - - '.*\.sh' - - '.*\.bat' - - '.*\.ps1' - 'jjb/.*' - 'global-jjb' + - 'shell/.*' ##################### # Job Configuration # diff --git a/releasenotes/notes/jjb-verify-shell-regex-aabf004fcb6de35b.yaml b/releasenotes/notes/jjb-verify-shell-regex-aabf004fcb6de35b.yaml new file mode 100644 index 00000000..5101c5a5 --- /dev/null +++ b/releasenotes/notes/jjb-verify-shell-regex-aabf004fcb6de35b.yaml @@ -0,0 +1,4 @@ +--- +fixes: + - | + Replace jjb-verify to test on all changes in the shell/* directory.