summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2022-03-29 18:57:21 +0100
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2022-04-01 23:19:21 +0000
commitb6f134f4455b215e09fddb4216f7833971000c61 (patch)
treebfe9baf4b18703f49a88133ea0663c572b4f17c3 /.gitlab-ci.yml
parent8d9e649570070ec987b9488fc8d17f0d749c80ae (diff)
downloadgstreamer-b6f134f4455b215e09fddb4216f7833971000c61.tar.gz
ci: stop automatically running tests post-merge
We did that in order to find flaky tests so we could add them to our ignore lists, but that's all done now and I doubt anyone still looks at the results, so this is just wasting runner cycles at this point. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2063>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 893d824052..bc06c496d9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -123,8 +123,9 @@ trigger:
rules:
# 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
+ # Require explicit action to trigger tests post merge
- if: '$CI_PROJECT_NAMESPACE == "gstreamer" && $CI_COMMIT_BRANCH == $GST_UPSTREAM_BRANCH'
+ when: 'manual'
# 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"'