This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
Register origin #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Misc | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
set-image: | |
# GitHub Actions allows using 'env' in a container context. | |
# However, env variables don't work for forks: https://github.com/orgs/community/discussions/44322 | |
# This workaround sets the container image for each job using 'set-image' job output. | |
runs-on: ubuntu-latest | |
outputs: | |
IMAGE: ${{ steps.set_image.outputs.IMAGE }} | |
RUNNER: ${{ steps.set_runner.outputs.RUNNER }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- id: set_image | |
run: cat .github/env >> $GITHUB_OUTPUT | |
- id: set_runner | |
run: | | |
# Run merge queues on persistent runners | |
if [[ $GITHUB_REF_NAME == *"gh-readonly-queue"* ]]; then | |
echo "RUNNER=arc-runners-polkadot-sdk-beefy-persistent" >> $GITHUB_OUTPUT | |
else | |
echo "RUNNER=arc-runners-polkadot-sdk-beefy" >> $GITHUB_OUTPUT | |
fi | |
build-runtimes-polkavm: | |
timeout-minutes: 20 | |
needs: [ set-image ] | |
runs-on: ${{ needs.set-image.outputs.RUNNER }} | |
container: | |
image: ${{ needs.set-image.outputs.IMAGE }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check Rust | |
run: | | |
rustup show | |
rustup +nightly show | |
- name: Build | |
env: | |
SUBSTRATE_RUNTIME_TARGET: riscv | |
run: | | |
forklift cargo check -p minimal-template-runtime | |
forklift cargo check -p westend-runtime | |
forklift cargo check -p rococo-runtime | |
forklift cargo check -p polkadot-test-runtime | |
build-subkey: | |
timeout-minutes: 20 | |
needs: [ set-image ] | |
runs-on: ${{ needs.set-image.outputs.RUNNER }} | |
container: | |
image: ${{ needs.set-image.outputs.IMAGE }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check Rust | |
run: | | |
rustup show | |
rustup +nightly show | |
- name: Build | |
env: | |
SKIP_WASM_BUILD: 1 | |
run: | | |
cd ./substrate/bin/utils/subkey | |
forklift cargo build --locked --release | |
confirm-required-build-misc-jobs-passed: | |
runs-on: ubuntu-latest | |
name: All build misc jobs passed | |
# If any new job gets added, be sure to add it to this array | |
needs: | |
[ | |
build-runtimes-polkavm, | |
build-subkey | |
] | |
steps: | |
- run: echo '### Good job! All the build misc tests passed 🚀' >> $GITHUB_STEP_SUMMARY |