summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2020-03-06 11:41:49 +0100
committerOndrej Holy <oholy@redhat.com>2020-03-26 10:00:22 +0100
commit042965174836bf4e7d5d5ebb79a2a901ff256dd3 (patch)
tree95192b6dd309789dd7effd610f573ac2f6aed370
parentf0f84b0e2f8e257f4ac64732e51d4c014b34fd64 (diff)
downloadnautilus-042965174836bf4e7d5d5ebb79a2a901ff256dd3.tar.gz
ci: Move code from template directly to job
The distro_test template is used only by one job. Let's move the code directly to that job to make the file more readable.
-rw-r--r--.gitlab-ci.yml11
1 files changed, 4 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0206908f6..a1ebd8aaf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,12 +10,6 @@ stages:
- cross_environment
- deploy
-.test_template: &distro_test
- script:
- - meson _build .
- - cd _build
- - ninja test
-
flatpak devel:
extends: '.flatpak'
stage: test
@@ -47,7 +41,10 @@ fedora rawhide:
- dnf update -y --nogpgcheck
- dnf install -y 'dnf-command(builddep)' redhat-rpm-config libseccomp-devel gcovr --nogpgcheck
- dnf builddep -y nautilus --nogpgcheck
- <<: *distro_test
+ script:
+ - meson _build .
+ - cd _build
+ - ninja test
only:
- schedules
- web