summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2023-04-03 13:40:16 +0200
committerMarge Bot <emma+marge@anholt.net>2023-04-04 23:49:53 +0000
commit72cd7e0079fc19a760a8bf76385392b604e46ea6 (patch)
treef112fb1ed8fcb9dc2807bb8371cf88dc0e6c061b /.gitlab-ci.yml
parent1b7a4029d0a21665f4218336301c2919e2af407c (diff)
downloadmesa-72cd7e0079fc19a760a8bf76385392b604e46ea6.tar.gz
ci: remove unused rules
These are no longer used. Reviewed-by: Emma Anholt <emma@anholt.net> Reviewed-by: Eric Engestrom <eric@igalia.com> Acked-by: Guilherme Gallo <guilherme.gallo@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22263>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b1c928ce8ec..5c371a15aba 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -122,9 +122,6 @@ stages:
# --------------------------------
.rules-anchors:
rules:
- # Forked project branch / pre-merge pipeline not for Marge bot
- - if: &is-forked-branch-or-pre-merge-not-for-marge '$CI_PROJECT_NAMESPACE != "mesa" || ($GITLAB_USER_LOGIN != "marge-bot" && $CI_PIPELINE_SOURCE == "merge_request_event")'
- when: manual
# Post-merge pipeline
- if: &is-post-merge '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_BRANCH'
when: on_success
@@ -241,22 +238,3 @@ sanity:
when: on_failure
reports:
junit: check-*.xml
-
-# Temporary rules for tests that should not block merging, but should be
-# available to optionally run with the "play" button in the UI in pre-merge
-# non-marge pipelines. This should appear in "extends:" after any includes of
-# test-source-dep.yml rules, so that these rules replace those.
-#
-# If a job is going to be manual for a long period of time, then please use a
-# driver-specific manual rules set from test-source-dep (see
-# freedreno-manual-rules, for example)
-.test-manual-mr:
- rules:
- - !reference [.no_scheduled_pipelines-rules, rules]
- - if: *is-forked-branch-or-pre-merge-not-for-marge
- changes:
- *all_paths
- when: manual
- variables:
- JOB_TIMEOUT: 80
-