mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 15:17:57 +00:00
e5be60bbf8
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.0 to 2.7.1. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/a95ba195448af2da9b00fb742d14ffaaf3c21f43...3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Build Substrate Binary
|
|
|
|
on:
|
|
# Allow it to be manually ran to rebuild binary when needed:
|
|
workflow_dispatch: {}
|
|
# Run at 2am every day for nightly builds.
|
|
schedule:
|
|
- cron: "0 2 * * *"
|
|
|
|
jobs:
|
|
tests:
|
|
name: Build Substrate
|
|
runs-on: ubuntu-latest-16-cores
|
|
steps:
|
|
- name: checkout polkadot-sdk
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: paritytech/polkadot-sdk
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y protobuf-compiler
|
|
|
|
- name: Install WASM toolchain
|
|
run: rustup target add wasm32-unknown-unknown
|
|
|
|
- name: Rust Cache
|
|
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
|
|
|
|
- name: build substrate binary
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --manifest-path substrate/bin/node/cli/Cargo.toml
|
|
|
|
- name: upload substrate binary
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: nightly-substrate-binary
|
|
path: target/release/substrate-node
|
|
retention-days: 2
|
|
if-no-files-found: error |