Message ID | 8ca21d49e7b95e788a4c092c1b8dcd3d1245d638.1692607487.git.simone.ballarin@bugseng.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | automation: avoid unnecessary analyses | expand |
On Mon, 21 Aug 2023, Simone Ballarin wrote: > This patch avoids the execution of pipelines in the > following branches: > - master > - smoke > - coverirty-tested/.* > - stable-.* > > The job-level exclusions have been removed as they are > pointless with this new workspace-level exclusion. > > Signed-off-by: Simone Ballarin <simone.ballarin@bugseng.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> > --- > Changes in v2: > - remove useless except clause in .yocto-test. > --- > .gitlab-ci.yml | 6 ++++++ > automation/gitlab-ci/build.yaml | 11 ----------- > automation/gitlab-ci/test.yaml | 5 ----- > 3 files changed, 6 insertions(+), 16 deletions(-) > > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml > index ee5430b8b7..ef4484e09a 100644 > --- a/.gitlab-ci.yml > +++ b/.gitlab-ci.yml > @@ -1,3 +1,9 @@ > +workflow: > + rules: > + - if: $CI_COMMIT_BRANCH =~ /^(master|smoke|^coverity-tested\/.*|stable-.*)$/ > + when: never > + - when: always > + > stages: > - analyze > - build > diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml > index 1a4a5e490d..b633facff4 100644 > --- a/automation/gitlab-ci/build.yaml > +++ b/automation/gitlab-ci/build.yaml > @@ -12,11 +12,6 @@ > - '*/*.log' > when: always > needs: [] > - except: > - - master > - - smoke > - - /^coverity-tested\/.*/ > - - /^stable-.*/ > > .gcc-tmpl: > variables: &gcc > @@ -214,11 +209,6 @@ > .yocto-test: > stage: build > image: registry.gitlab.com/xen-project/xen/${CONTAINER} > - except: > - - master > - - smoke > - - /^coverity-tested\/.*/ > - - /^stable-.*/ > script: > - ./automation/build/yocto/build-yocto.sh -v --log-dir=./logs --xen-dir=`pwd` ${YOCTO_BOARD} ${YOCTO_OUTPUT} > variables: > @@ -269,7 +259,6 @@ > .test-jobs-artifact-common: > stage: build > needs: [] > - except: !reference [.test-jobs-common, except] > > # Arm test artifacts > > diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml > index 810631bc46..8737f367c8 100644 > --- a/automation/gitlab-ci/test.yaml > +++ b/automation/gitlab-ci/test.yaml > @@ -1,11 +1,6 @@ > .test-jobs-common: > stage: test > image: registry.gitlab.com/xen-project/xen/${CONTAINER} > - except: > - - master > - - smoke > - - /^coverity-tested\/.*/ > - - /^stable-.*/ > > .arm64-test-needs: &arm64-test-needs > - alpine-3.18-arm64-rootfs-export > -- > 2.34.1 >
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ee5430b8b7..ef4484e09a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,9 @@ +workflow: + rules: + - if: $CI_COMMIT_BRANCH =~ /^(master|smoke|^coverity-tested\/.*|stable-.*)$/ + when: never + - when: always + stages: - analyze - build diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml index 1a4a5e490d..b633facff4 100644 --- a/automation/gitlab-ci/build.yaml +++ b/automation/gitlab-ci/build.yaml @@ -12,11 +12,6 @@ - '*/*.log' when: always needs: [] - except: - - master - - smoke - - /^coverity-tested\/.*/ - - /^stable-.*/ .gcc-tmpl: variables: &gcc @@ -214,11 +209,6 @@ .yocto-test: stage: build image: registry.gitlab.com/xen-project/xen/${CONTAINER} - except: - - master - - smoke - - /^coverity-tested\/.*/ - - /^stable-.*/ script: - ./automation/build/yocto/build-yocto.sh -v --log-dir=./logs --xen-dir=`pwd` ${YOCTO_BOARD} ${YOCTO_OUTPUT} variables: @@ -269,7 +259,6 @@ .test-jobs-artifact-common: stage: build needs: [] - except: !reference [.test-jobs-common, except] # Arm test artifacts diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml index 810631bc46..8737f367c8 100644 --- a/automation/gitlab-ci/test.yaml +++ b/automation/gitlab-ci/test.yaml @@ -1,11 +1,6 @@ .test-jobs-common: stage: test image: registry.gitlab.com/xen-project/xen/${CONTAINER} - except: - - master - - smoke - - /^coverity-tested\/.*/ - - /^stable-.*/ .arm64-test-needs: &arm64-test-needs - alpine-3.18-arm64-rootfs-export
This patch avoids the execution of pipelines in the following branches: - master - smoke - coverirty-tested/.* - stable-.* The job-level exclusions have been removed as they are pointless with this new workspace-level exclusion. Signed-off-by: Simone Ballarin <simone.ballarin@bugseng.com> --- Changes in v2: - remove useless except clause in .yocto-test. --- .gitlab-ci.yml | 6 ++++++ automation/gitlab-ci/build.yaml | 11 ----------- automation/gitlab-ci/test.yaml | 5 ----- 3 files changed, 6 insertions(+), 16 deletions(-)