add subnet precompile contract #318
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: Update Chainspecs | |
concurrency: | |
group: update-chainspec-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
verbose: | |
description: "Output more information when triggered manually" | |
required: false | |
default: "" | |
env: | |
CARGO_TERM_COLOR: always | |
VERBOSE: ${{ github.events.input.verbose }} | |
jobs: | |
update-chainspecs: | |
runs-on: SubtensorCI | |
permissions: | |
contents: write | |
if: > | |
github.event.pull_request.head.ref != 'devnet-ready' && | |
github.event.pull_request.head.ref != 'devnet' && | |
github.event.pull_request.head.ref != 'testnet' && | |
github.event.pull_request.head.ref != 'main' | |
strategy: | |
matrix: | |
rust-target: | |
- x86_64-unknown-linux-gnu | |
os: | |
- ubuntu-latest | |
include: | |
- os: ubuntu-latest | |
env: | |
RUST_BACKTRACE: full | |
steps: | |
- name: Check-out repository under $GITHUB_WORKSPACE | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update && | |
sudo apt-get install -y clang curl libssl-dev llvm libudev-dev protobuf-compiler | |
- name: Utilize Shared Rust Cache | |
uses: Swatinem/[email protected] | |
with: | |
key: ubuntu-latest-target/x86_64-unknown-linux-gnu | |
- name: Build chainspecs | |
run: ./scripts/build_all_chainspecs.sh | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
name: Commit any updated chainspecs | |
with: | |
commit_message: Update chainspecs |