diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-10-05 22:39:10 +0530 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2022-10-05 19:02:09 +0000 |
commit | 81cd5f53489248afdff450b99738e5636d20589c (patch) | |
tree | e568cfea6ccc2d72b6717d865375aa1d23e35eef | |
parent | 0ba7989314cffe5f987c876004e5d04dbb900624 (diff) |
ci: Don't cancel gstreamer MR pipelines when pushing to cerbero main
We mark all cerbero jobs as interruptible, which is good because that
means pushes to cerbero MRs that obsolete commits in those MRs will
not keep running stable jobs / pipelines.
However, this has an unfortunate side-effect that pushes to cerbero
main cancel the cerbero pipelines triggered by merge requests in the
gstreamer monorepo and causes CI on MRs to fail.
Mark cerbero trigger jobs as non-interruptible.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/959>
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37509059..d5979023 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -186,6 +186,8 @@ android fedora image: - if: '$CI_GSTREAMER_TRIGGERED == "true" && $CI_PROJECT_NAMESPACE == "gstreamer"' script: - ./ci/cerbero_setup.sh cerbero_script + # Don't interrupt gstreamer MR CI when cerbero main gets pushes + interruptible: false # # Cerbero Linux X86_64 build |