summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2018-04-10 17:19:12 +0100
committerJavier Jardón <jjardon@gnome.org>2018-04-12 23:09:00 +0100
commit1af6f4429c320935e36781a9873dbaf42b8a80f8 (patch)
treeb3c86bb19afd658584e8f65587465f33c501f314
parent9bc2bb049f7db7214baf23e6dabf99c8abd1cf78 (diff)
downloadbuildstream-1af6f4429c320935e36781a9873dbaf42b8a80f8.tar.gz
.gitlab-ci.yml: Change jobs from <distro>-tests to tests-<distro>
So they show in order nicely in the gitlab CI UI
-rw-r--r--.gitlab-ci.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6a35ac782..fe4083df5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -91,15 +91,15 @@ source_dist:
dependencies:
- source_dist
-debian-8-tests:
+tests-debian-8:
<<: *linux-tests
-fedora-27-tests:
+tests-fedora-27:
image: buildstream/buildstream-fedora:master-56-5d7ee17
<<: *linux-tests
-unix-tests:
+tests-unix:
# Use fedora here, to a) run a test on fedora and b) ensure that we
# can get rid of ostree - this is not possible with debian-8
image: buildstream/buildstream-fedora:master-56-5d7ee17
@@ -176,9 +176,9 @@ coverage:
- coverage combine --rcfile=../.coveragerc -a coverage.unix
- coverage report --rcfile=../.coveragerc -m
dependencies:
- - debian-8-tests
- - fedora-27-tests
- - unix-tests
+ - tests-debian-8
+ - tests-fedora-27
+ - tests-unix
- source_dist
# Deploy, only for merges which land on master branch.