From 3d9e80da60584ecdad433a3259978014c6e5a848 Mon Sep 17 00:00:00 2001 From: Sophie Herold Date: Thu, 8 Oct 2020 01:05:48 +0200 Subject: [PATCH] Remove different stages from CI --- .gitlab-ci.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5b08e4e..8a9351b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,3 @@ -stages: - - check - - test - test: image: registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:3.38 interruptible: true @@ -22,25 +18,22 @@ test: dbus-run-session meson test --no-stdsplit --print-errorlogs -cargo-fmt: - stage: check - interruptible: true - image: rust:slim - script: - - rustup component add rustfmt - - cargo fmt --all -- --color=always --check - cargo-audit: - stage: check interruptible: true image: rust script: - cargo install cargo-audit - cargo audit +cargo-fmt: + interruptible: true + image: rust:slim + script: + - rustup component add rustfmt + - cargo fmt --all -- --color=always --check + cargo-outdated: allow_failure: true - stage: check interruptible: true image: rust script: -- GitLab