This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
IPC-304: add permissioned flag to disable validator changes #196
Workflow file for this run
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: Bindings | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
bindings: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
cache: false | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Create binding | |
run: make compile-abi && make rust-binding | |
- name: Git Config | |
run: | | |
git config --global user.name 'auto-commit' | |
git config --global user.email '[email protected]' | |
- name: Commit bindings | |
run: | | |
make commit-rust-binding | |
- name: Commit ABI | |
run: | | |
make commit-abi |