summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2021-10-13 18:10:40 -0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-10-14 13:42:21 +0000
commit64462f627b4500d32dd735d5532807bb1789ed68 (patch)
treeac9e848364cd9ba9f656cd5f811d759a0e09f669 /.gitlab-ci.yml
parenteb839a8423c2b64341dc6ca2d287a8f67fccfa8e (diff)
downloadgstreamer-64462f627b4500d32dd735d5532807bb1789ed68.tar.gz
ci: Move rules from `.build fedora x86_64` to `.build`
They should apply to all job that extend it as the 2 jobs that depend on `.build` but not on `.build fedora x86_64` is `build nodebug fedora x86_64` which pulls `build static nodebug fedora x86_64` both jobs should be manual on `main` and they should run only if some files "modules_changes" happened Also make sure we do no automatically run job on `main` branches from forks Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1141>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml28
1 files changed, 15 insertions, 13 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e235934c59..a1bf1717f4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -114,7 +114,7 @@ trigger:
# If the MR is assigned to the Merge bot, trigger the pipeline automatically
- if: '$CI_MERGE_REQUEST_ASSIGNEES == "gstreamer-merge-bot"'
# Alway run tests post merged
- - if: '$CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
# When the assignee isn't the merge bot, require an explicit action to trigger the pipeline
# to avoid wasting CI resources
- if: '$CI_MERGE_REQUEST_ASSIGNEES != "gstreamer-merge-bot"'
@@ -330,6 +330,13 @@ gst indent:
when: "always"
paths:
- 'meson-logs/'
+ rules:
+ # If this matches, it means the pipeline is running against either the main
+ # or a stable branch, so make it manual
+ - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ when: manual
+ - changes:
+ *modules_changes
.build fedora x86_64:
extends:
@@ -340,13 +347,6 @@ gst indent:
- "fedora amd64 docker"
variables:
MESON_ARGS: *simple_build
- rules:
- # If this matches, it means the pipeline is running against either the main
- # or a stable branch, so make it manual
- - if: '$CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
- when: manual
- - changes:
- *modules_changes
build nodebug fedora x86_64:
extends:
@@ -395,7 +395,7 @@ build clang fedora x86_64:
rules:
# If this matches, it means the pipeline is running against either the main
# or a stable branch, so make it manual
- - if: '$CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
when: manual
- changes:
*modules_changes
@@ -538,7 +538,7 @@ gstreamer-full:
rules:
# If this matches, it means the pipeline is running against either the main
# or a stable branch, so make it manual
- - if: '$CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
when: manual
- changes:
- "*"
@@ -708,7 +708,7 @@ valgrind ges:
- plugins-cache-diffs/
#
-# This jobs runs in gsrtreamer namespace when after the merge into main branch.
+# This jobs runs in gstreamer namespace when after the merge into main branch.
# The produced artifact is later used to automatically update the web page.
#
documentation:
@@ -730,7 +730,8 @@ build documentation:
needs:
- "trigger"
rules:
- - if: '$CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ # Never run post merge, we have the `documentation` always running for that
+ - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
when: never
- changes:
- .gitlab-ci.yml
@@ -762,7 +763,8 @@ cerbero trigger:
- ci/gitlab/trigger_cerbero_pipeline.py
rules:
- - if: '$CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ # Never run post merge
+ - if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
when: never
- changes:
- .gitlab-ci.yml