From 2e8249dc1731aea7074a98f2f6351b178bbefce0 Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Tue, 2 Aug 2022 15:01:15 +0200 Subject: [PATCH] [ci] chores: remove cargo install nextest (#11961) --- substrate/scripts/ci/gitlab/pipeline/test.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/substrate/scripts/ci/gitlab/pipeline/test.yml b/substrate/scripts/ci/gitlab/pipeline/test.yml index b2daf5bada2..7a9f57e9a77 100644 --- a/substrate/scripts/ci/gitlab/pipeline/test.yml +++ b/substrate/scripts/ci/gitlab/pipeline/test.yml @@ -213,8 +213,6 @@ test-linux-stable: parallel: 3 script: - rusty-cachier snapshot create - # TODO: remove when current paritytech/ci-linux:staging (with rust stable 1.62) is switched to production - - time cargo install cargo-nextest # this job runs all tests in former runtime-benchmarks, frame-staking and wasmtime tests # tests are partitioned by nextest and executed in parallel on $CI_NODE_TOTAL runners # node-cli is excluded until https://github.com/paritytech/substrate/issues/11321 fixed @@ -373,8 +371,6 @@ test-wasmer-sandbox: parallel: 3 script: - rusty-cachier snapshot create - # TODO: remove when current paritytech/ci-linux:staging (with rust stable 1.62) is switched to production - - cargo install cargo-nextest - echo "Node index - ${CI_NODE_INDEX}. Total amount - ${CI_NODE_TOTAL}" - time cargo nextest run --release --features runtime-benchmarks,wasmer-sandbox,disable-ui-tests --partition count:${CI_NODE_INDEX}/${CI_NODE_TOTAL} - if [ ${CI_NODE_INDEX} == 1 ]; then rusty-cachier cache upload; fi -- GitLab