Build staking miner playground binary for nightly tests #38
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 staking miner playground binary for nightly tests | |
on: | |
# Run when changes to staking miner playground is made | |
push: | |
branches: | |
- main | |
paths: | |
- "staking-miner-playground/**" | |
# Allow it to be manually ran to rebuild binary when needed: | |
workflow_dispatch: {} | |
# Run at 22pm every week on Mondays for nightly builds. | |
schedule: | |
- cron: "0 22 * * 1" | |
jobs: | |
tests: | |
name: Build staking-miner-playground | |
runs-on: ubuntu-latest | |
container: paritytech/ci-unified:bullseye-1.81.0-2024-09-11 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
staking-miner-playground | |
cache-on-failure: true | |
- name: build staking-miner-playground binary | |
run: | | |
cd staking-miner-playground | |
cargo build --release --features test-trimming | |
./target/release/staking-miner-playground --version | |
strip -s ./target/release/staking-miner-playground | |
- name: upload staking-miner-playground binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: staking-miner-playground-binary | |
path: ./staking-miner-playground/target/release/staking-miner-playground | |
retention-days: 31 | |
if-no-files-found: error |