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

Commit

Permalink
Add manual action to build PR binary (#1470)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ddorgan authored Aug 27, 2020
1 parent d327000 commit 8e3771e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e3771e

Please sign in to comment.