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

Patch CI for split out worker binaries #7360

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt-get update && \
ln -s /data /polkadot/.local/share/polkadot

# add polkadot binary to docker image
COPY ./polkadot /usr/local/bin
COPY ./polkadot ./polkadot-*-worker /usr/local/bin

USER polkadot

Expand Down
2 changes: 2 additions & 0 deletions scripts/ci/gitlab/pipeline/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ build-linux-stable:
- 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
- pushd artifacts
- sha256sum polkadot | tee polkadot.sha256
- shasum -c polkadot.sha256
Expand Down