This repository was archived by the owner on Jul 30, 2025. It is now read-only.
BAC-189: Preparations for shielder-prover-server dockerization #1087
Workflow file for this run
This file contains hidden or 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: PR commit | |
on: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: "${{ github.ref }}-${{ github.workflow }}" | |
cancel-in-progress: true | |
jobs: | |
check-vars-and-secrets: | |
name: Check vars and secrets | |
uses: ./.github/workflows/_check-vars-and-secrets.yml | |
secrets: inherit | |
build-contracts: | |
name: Generate and compile contracts | |
needs: [check-vars-and-secrets] | |
uses: ./.github/workflows/_build-contracts.yml | |
secrets: inherit | |
deploy-contracts: | |
name: Deploy contracts | |
needs: [build-contracts] | |
uses: ./.github/workflows/_deploy-contracts.yml | |
secrets: inherit | |
rust-crates-checks: | |
name: Rust crates checks | |
needs: [build-contracts] | |
uses: ./.github/workflows/_rust-crates-checks.yml | |
secrets: inherit | |
build-wasm-packages: | |
name: Build wasm packages | |
needs: [check-vars-and-secrets] | |
uses: ./.github/workflows/_build-wasm-packages.yml | |
secrets: inherit | |
ts-checks: | |
name: Typescript modules checks | |
needs: [build-contracts, build-wasm-packages] | |
uses: ./.github/workflows/_ts-checks.yml | |
secrets: inherit | |
clean-wasm-artifact: | |
name: Clean wasm artifact | |
runs-on: ubuntu-22.04 | |
if: ${{ always() }} | |
# dependencies should include all jobs, which interact with wasm artifact | |
needs: [build-wasm-packages, ts-checks] | |
steps: | |
- uses: geekyeggo/delete-artifact@v5 | |
with: | |
name: | | |
wasm-pkg | |
wasm-pkg-without-circuits | |
proving-keys-pkg | |
measure-gas-usage-and-verifier-code-size: | |
name: Measure gas usage | |
uses: ./.github/workflows/_measure-gas-and-contract-size.yml | |
secrets: inherit |