From 21897336d700f18ac445dd795c5c1b1c05a30a8b Mon Sep 17 00:00:00 2001 From: s0me0ne-unkn0wn <48632512+s0me0ne-unkn0wn@users.noreply.github.com> Date: Wed, 14 Jun 2023 14:43:32 +0200 Subject: [PATCH] Hotfix for #7360 (#7365) * CI job hotfix * Instruct `cargo` to build all the binaries --- polkadot/scripts/ci/gitlab/pipeline/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polkadot/scripts/ci/gitlab/pipeline/build.yml b/polkadot/scripts/ci/gitlab/pipeline/build.yml index 28b08fa20d..d07037626d 100644 --- a/polkadot/scripts/ci/gitlab/pipeline/build.yml +++ b/polkadot/scripts/ci/gitlab/pipeline/build.yml @@ -21,13 +21,13 @@ build-linux-stable: # Ensure we run the UI tests. RUN_UI_TESTS: 1 script: - - time cargo build --locked --profile testnet --features pyroscope,fast-runtime --verbose --bin polkadot + - time cargo build --locked --profile testnet --features pyroscope,fast-runtime --verbose --bins # pack artifacts - mkdir -p ./artifacts - VERSION="${CI_COMMIT_REF_NAME}" # will be tag or branch name - mv ./target/testnet/polkadot ./artifacts/. - - mv ./target/testnet/polkadot-prepare-worker ./artifacts/. 2 > /dev/null || true - - mv ./target/testnet/polkadot-execute-worker ./artifacts/. 2 > /dev/null || true + - mv ./target/testnet/polkadot-prepare-worker ./artifacts/. 2>/dev/null || true + - mv ./target/testnet/polkadot-execute-worker ./artifacts/. 2>/dev/null || true - pushd artifacts - sha256sum polkadot | tee polkadot.sha256 - shasum -c polkadot.sha256