diff options
author | Ondrej Holy <oholy@redhat.com> | 2020-03-06 12:13:31 +0100 |
---|---|---|
committer | António Fernandes <antoniojpfernandes@gmail.com> | 2020-04-05 16:22:26 +0000 |
commit | 2893aec73b96a86f15228dcd175a3f32f21d1a97 (patch) | |
tree | 1254759318001276e284c4a0dc9246cdcc652cc7 /.gitlab-ci.yml | |
parent | 352e6688d00258764fb3f55edab19aceff28e92e (diff) | |
download | nautilus-2893aec73b96a86f15228dcd175a3f32f21d1a97.tar.gz |
ci: Replace underscore by space in stage name
The stage and job names can contain spaces and they are already used
in job names. Let's replace underscore in cross_environemnt stage to
make the pipeline output nicer.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d8c288a84..b126bdb51 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ variables: stages: - triage - test - - cross_environment + - cross environment - deploy flatpak devel: @@ -28,7 +28,7 @@ nightly: fedora rawhide: image: fedora:rawhide - stage: cross_environment + stage: cross environment before_script: - dnf update -y --nogpgcheck - dnf install -y 'dnf-command(builddep)' redhat-rpm-config libseccomp-devel gcovr --nogpgcheck @@ -43,7 +43,7 @@ fedora rawhide: - tags flatpak master: - stage: cross_environment + stage: cross environment dependencies: [] variables: MANIFEST_PATH: "build-aux/flatpak/org.gnome.NautilusMaster.yml" |