From: Nicolas Dufresne Date: Tue, 17 Mar 2020 15:51:32 +0000 (-0400) Subject: ci: Port from only: to rules X-Git-Tag: 1.19.3~491^2~175 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3762c1a6d2b29f73c5dbca414a04e7b70f42f5a2;p=platform%2Fupstream%2Fgstreamer.git ci: Port from only: to rules This fixed CI breakage introduced by gst-ci!247 --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d4bf180..9169011 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,50 +1,43 @@ include: "https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/master/gitlab/ci_template.yml" +.local-rules: &local-rules + rules: + - changes: + - validate/launcher/ + # Run valgrind if we changed the check.py testsuite local valgrind core: extends: '.valgrind fedora x86_64' variables: TEST_SUITE: "check.gstreamer\\..*" - only: - changes: - - validate/launcher/ + <<: *local-rules local valgrind base: extends: '.valgrind fedora x86_64' variables: TEST_SUITE: "check.gst-plugins-base\\..*" - only: - changes: - - validate/launcher/ + <<: *local-rules local valgrind good: extends: '.valgrind fedora x86_64' variables: TEST_SUITE: "check.gst-plugins-good\\..*" - only: - changes: - - validate/launcher/ + <<: *local-rules local valgrind ugly: extends: '.valgrind fedora x86_64' variables: TEST_SUITE: "check.gst-plugins-ugly\\..*" - only: - changes: - - validate/launcher/ + <<: *local-rules local valgrind bad: extends: '.valgrind fedora x86_64' variables: TEST_SUITE: "check.gst-plugins-bad\\..*" - only: - changes: - - validate/launcher/ + <<: *local-rules local valgrind ges: extends: '.valgrind fedora x86_64' variables: TEST_SUITE: "check.gst-editing-services\\..*" - only: - changes: - - validate/launcher/ \ No newline at end of file + <<: *local-rules