Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 3d98062

Browse files
Hotfix for #7360 (#7365)
* CI job hotfix * Instruct `cargo` to build all the binaries
1 parent 94cadae commit 3d98062

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/ci/gitlab/pipeline/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ build-linux-stable:
2121
# Ensure we run the UI tests.
2222
RUN_UI_TESTS: 1
2323
script:
24-
- time cargo build --locked --profile testnet --features pyroscope,fast-runtime --verbose --bin polkadot
24+
- time cargo build --locked --profile testnet --features pyroscope,fast-runtime --verbose --bins
2525
# pack artifacts
2626
- mkdir -p ./artifacts
2727
- VERSION="${CI_COMMIT_REF_NAME}" # will be tag or branch name
2828
- mv ./target/testnet/polkadot ./artifacts/.
29-
- mv ./target/testnet/polkadot-prepare-worker ./artifacts/. 2 > /dev/null || true
30-
- mv ./target/testnet/polkadot-execute-worker ./artifacts/. 2 > /dev/null || true
29+
- mv ./target/testnet/polkadot-prepare-worker ./artifacts/. 2>/dev/null || true
30+
- mv ./target/testnet/polkadot-execute-worker ./artifacts/. 2>/dev/null || true
3131
- pushd artifacts
3232
- sha256sum polkadot | tee polkadot.sha256
3333
- shasum -c polkadot.sha256

0 commit comments

Comments
 (0)