From 080c7b8c9555052e32b02846a34a3f2477081caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sun, 5 Apr 2020 14:47:55 +0200 Subject: [PATCH] CI: Remove build stage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `cargo test` rebuilds all of it anyway. Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ce2554a..42aea7cb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - lint - - build - test variables: @@ -14,11 +13,6 @@ variables: image: rustlang/rust:nightly allow_failure: true # It's not often, but it happens nightly breaks, surprisingly. -.build: - stage: build - script: - - cargo build --verbose - .test: stage: test script: @@ -32,16 +26,6 @@ rustfmt: extends: - .stable -stable-build: - extends: - - .build - - .stable - -nightly-build: - extends: - - .build - - .nightly - stable-test: extends: - .test