From 8da1c192e6544500d29fa3760f3590e1c10c8ee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Mon, 16 Nov 2020 17:21:53 +0100 Subject: ci: Make check-commit-log run again It needs 'only: merge_request' to get the necessary env variables. Part-of: --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 61d2af660..93e358d19 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,11 @@ stages: - test - coverage +.only_default: &only_default + only: + - merge_requests + - /^.*$/ + check-commit-log: stage: review variables: @@ -18,6 +23,7 @@ check-commit-log: - commit-message-junit-report.xml reports: junit: commit-message-junit-report.xml + <<: *only_default build-mutter: stage: build @@ -30,6 +36,7 @@ build-mutter: expire_in: 1 day paths: - build + <<: *only_default build-without-opengl-and-glx: stage: build @@ -41,6 +48,7 @@ build-without-opengl-and-glx: artifacts: paths: - build/meson-logs + <<: *only_default build-without-native-backend-and-wayland: stage: build @@ -52,6 +60,7 @@ build-without-native-backend-and-wayland: artifacts: paths: - build/meson-logs + <<: *only_default test-mutter: stage: test @@ -74,6 +83,7 @@ test-mutter: when: always paths: - build + <<: *only_default test-mutter-coverage: stage: coverage @@ -88,6 +98,7 @@ test-mutter-coverage: - build/meson-logs/coveragereport coverage: '/^TOTAL.*\s+(\d+\%)$/' when: always + <<: *only_default can-build-gnome-shell: stage: test @@ -100,3 +111,4 @@ can-build-gnome-shell: - .gitlab-ci/checkout-gnome-shell.sh - meson gnome-shell gnome-shell/build --prefix /usr -Dman=false - ninja -C gnome-shell/build install + <<: *only_default -- cgit v1.2.1