From a55d42097939a9fbe674258dfefbf986db59e7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 23 Oct 2019 00:29:28 +0200 Subject: [PATCH] Temporarily remove features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's not possible to use them at the top of the workspace. Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd0be079..dabc9688 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,12 +23,12 @@ variables: .build: stage: build script: - - cargo build --verbose --no-default-features --features=$FEATURES + - cargo build --verbose .test: stage: test script: - - cargo test --verbose --no-default-features --features=$FEATURES + - cargo test --verbose rust-latest-build: extends: @@ -40,7 +40,6 @@ rust-nightly-build: - .build - .nightly - rust-latest-test: extends: - .test @@ -50,13 +49,3 @@ rust-nightly-test: extends: - .test - .nightly - -rust-latest-build with features=disable-validation: - extends: rust-latest-build - variables: - FEATURES: "disable-validation" - -rust-latest-test with features=disable-validation: - extends: rust-latest-test - variables: - FEATURES: "disable-validation"