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
This commit is contained in:
ddorgan
2020-08-27 10:45:06 +02:00
committed by GitHub
parent e3b312dab0
commit 0931d0aafa
+12
View File
@@ -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