summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2020-10-08 13:57:36 +0300
committerJordan Petridis <jordan@centricular.com>2020-10-08 15:47:51 +0300
commitad370fecef956a1ddad5e62577ab7b3f6ccd208c (patch)
tree599b48cf26215935a1d698d3d48f889346fa2aa1 /gitlab
parent24db2ef9e75c6edf49b28cd7d46495180fc0f216 (diff)
ci_template: try to enable merge-request pipelines again
Gitlab was slightly bugged in previous version, and we had to use branch-only pipelines. Let's try this again. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/363>
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/ci_template.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/gitlab/ci_template.yml b/gitlab/ci_template.yml
index 7317b41..a9c7387 100644
--- a/gitlab/ci_template.yml
+++ b/gitlab/ci_template.yml
@@ -1,5 +1,5 @@
include:
- - template: 'Workflows/Branch-Pipelines.gitlab-ci.yml'
+ - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
stages:
- 'build docker'
@@ -329,12 +329,11 @@ manifest:
- if: '$CI_PROJECT_PATH == "gstreamer/cerbero"'
- if: '$CI_PROJECT_PATH == "gstreamer/gst-docs"'
- # If the user that triggered the Pipeline is the Merge bot and the branch doesn't match
- # the upstream branch set, run the pipeline
- - if: '$GITLAB_USER_LOGIN == "gstreamer-merge-bot" && $CI_COMMIT_BRANCH != $GST_UPSTREAM_BRANCH'
- # When the user isn't the merge bot, require an explicit action to trigger the pipeline
+ # If the MR is assigned to the Merge bot, trigger the pipeline automatically
+ - if: '$CI_MERGE_REQUEST_ASSIGNEES == "gstreamer-merge-bot"'
+ # When the assignee isn't the merge bot, require an explicit action to trigger the pipeline
# to avoid wasting CI resources
- - if: '$GITLAB_USER_LOGIN != "gstreamer-merge-bot"'
+ - if: '$CI_MERGE_REQUEST_ASSIGNEES != "gstreamer-merge-bot"'
when: 'manual'
# If this matches, it means the pipeline is running against either the main
# or a stable branch, so make it manual
@@ -880,7 +879,7 @@ build cerbero cross-android universal:
- '.cerbero'
- '.cerbero cross-android universal'
rules:
- - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME && $CI_PROJECT_NAME == "gst-docs"'
+ - if: '$CI_MERGE_REQUEST_IID && $CI_PROJECT_NAME == "gst-docs"'
- if: '$CI_PROJECT_NAME !~ /^(cerbero|gst-build|gst-docs|gst-omx|gstreamer-vaapi|gst-integration-testsuites|gst-plugins-rs)$/'
#
@@ -967,7 +966,7 @@ build cerbero cross win64:
cross-android universal examples:
extends: ".cross-android universal examples"
rules:
- - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME && $CI_PROJECT_NAME == "gst-docs"'
+ - if: '$CI_MERGE_REQUEST_IID && $CI_PROJECT_NAME == "gst-docs"'
- if: '$CI_PROJECT_NAME !~ /^(cerbero|gst-build|gst-docs|gst-omx|gstreamer-vaapi|gst-integration-testsuites|gst-plugins-rs)$/'
needs:
- "build cerbero cross-android universal"
@@ -1046,7 +1045,7 @@ build cerbero cross-ios universal:
- '.cerbero'
- '.cerbero cross-ios universal'
rules:
- - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME && $CI_PROJECT_NAME == "gst-docs"'
+ - if: '$CI_MERGE_REQUEST_IID && $CI_PROJECT_NAME == "gst-docs"'
- if: '$CI_PROJECT_NAME !~ /^(cerbero|gst-build|gst-docs|gst-omx|gst-sharp|gstreamer-vaapi|gst-integration-testsuites|gst-plugins-rs)$/'
documentation:
@@ -1147,7 +1146,7 @@ documentation:
cross-ios universal examples:
extends: ".cross-ios universal examples"
rules:
- - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME && $CI_PROJECT_NAME == "gst-docs"'
+ - if: '$CI_MERGE_REQUEST_IID && $CI_PROJECT_NAME == "gst-docs"'
- if: '$CI_PROJECT_NAME !~ /^(cerbero|gst-build|gst-docs|gst-omx|gstreamer-vaapi|gst-integration-testsuites|gst-plugins-rs)$/'
needs:
- "build cerbero cross-ios universal"