Skip to content

feat(ci): Check that generated bindings are up to date #6

feat(ci): Check that generated bindings are up to date

feat(ci): Check that generated bindings are up to date #6

Workflow file for this run

name: Binding Checks
on:
pull_request:
paths:
- # Any new or changed canisters
'dfx.json'
- # Any new or changed .did files
'**/*.did'
- # Scripts, GitHub actions that contain 'backend' in their path.
'**/*backend*'
- # The backend source code
'src/backend/**'
- 'src/shared/**'
- # Rust files such as Cargo.lock, Cargo.toml and rust-toolchain.toml
'**/Cargo*'
- '**/*rust*'
- # This workflow
'.github/workflows/binding-checks.yml'
workflow_dispatch:
jobs:
generate:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-backend-tests-${{ hashFiles('Cargo.lock', 'rust-toolchain.toml') }}
- uses: actions/cache@v4
id: backend-wasm-cache
with:
path: |
target/wasm32-unknown-unknown/release/backend.wasm
key: ${{ runner.os }}-backend-wasm-${{ hashFiles('Cargo.lock', 'rust-toolchain.toml', 'src/backend/**/*', 'src/shared/**/*') }}
- name: Prepare
uses: ./.github/actions/prepare
- name: Install dfx
uses: dfinity/setup-dfx@main
- name: Install binstall
run: |
BINSTALL_VERSION="1.8.0"
curl -L --proto '=https' --tlsv1.2 -sSf "https://github.com/cargo-bins/cargo-binstall/releases/download/v${BINSTALL_VERSION}/cargo-binstall-x86_64-unknown-linux-musl.tgz" | tar -xvzf - cargo-binstall
./cargo-binstall -y --force "cargo-binstall@$BINSTALL_VERSION"
rm cargo-binstall
- name: Install candid-extractor
run: cargo binstall --no-confirm [email protected] && candid-extractor --version
- name: Generate bindings
run: npm run generate
# TODO: Cache the build.
- name: Check bindings
run: |
test -z "$(git status --porcelain)" || {
echo "FIX: Please run npm run generate"
git diff
exit 1
}
binding-checks-pass:
needs: [ 'generate' ]
runs-on: ubuntu-20.04
steps:
- name: Cleared for merging
run: echo OK