From 4e89b6addecd59cccb4c4805d39d64d51035b3e1 Mon Sep 17 00:00:00 2001 From: Denis Pisarev <denis.pisarev@parity.io> Date: Wed, 11 Aug 2021 21:55:14 +0200 Subject: [PATCH] CI: return needs (#3625) --- polkadot/.gitlab-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/polkadot/.gitlab-ci.yml b/polkadot/.gitlab-ci.yml index 713ee8b5d19..f0b66e806df 100644 --- a/polkadot/.gitlab-ci.yml +++ b/polkadot/.gitlab-ci.yml @@ -144,7 +144,7 @@ test-build-linux-stable: # we're using the bin built here, instead of having a parallel `build-linux-release` - time cargo build --release --verbose --bin polkadot - sccache -s - # pack-artifacts + # pack artifacts - mkdir -p ./artifacts - VERSION="${CI_COMMIT_REF_NAME}" # will be tag or branch name - mv ./target/release/polkadot ./artifacts/. @@ -430,6 +430,11 @@ publish-rustdoc: rules: - if: $CI_PIPELINE_SOURCE == "web" && $CI_COMMIT_REF_NAME == "master" - if: $CI_COMMIT_REF_NAME == "master" + # `needs:` can be removed after CI image gets nonroot. In this case `needs:` stops other + # artifacts from being dowloaded by this job. + needs: + - job: build-rustdoc + artifacts: true script: - rm -rf /tmp/* # Set git config -- GitLab