Skip to content
Snippets Groups Projects
Commit 0931d0aa authored by ddorgan's avatar ddorgan Committed by GitHub
Browse files

Add manual action to build PR binary (#1470)

* Allow manual action for building a PR binary

* Allow test-refs for PR manual build

* Test PR build in github actions

* Use steps in build

* Removing build via github actions
parent e3b312da
No related merge requests found
......@@ -177,6 +177,18 @@ build-linux-release: &build
- cp -r scripts/docker/* ./artifacts
- sccache -s
build-linux-release-pr: &build
stage: build
<<: *collect-artifacts
<<: *test-refs
<<: *docker-env
<<: *compiler_info
script:
- time cargo build --release --verbose
- mkdir -p ./artifacts
- mv ./target/release/polkadot ./artifacts/.
- sha256sum ./artifacts/polkadot | tee ./artifacts/polkadot.sha256
when: manual
generate-impl-guide:
stage: build
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment