Skip to content

Commit

Permalink
ci: fix dependencies check for compilers (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov authored Feb 4, 2025
1 parent a679892 commit 282fdf2
Showing 1 changed file with 12 additions and 28 deletions.
40 changes: 12 additions & 28 deletions .github/workflows/dependencies_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,34 +50,18 @@ jobs:
check-zksolc:
needs: define-dependencies
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: matter-labs
repo: era-compiler-solidity
workflow_file_name: dependencies.yaml
github_token: ${{ secrets.ZKSYNC_DISPATCH_TOKEN }}
ref: ${{ needs.define-dependencies.outputs.zksolc_branch || 'main' }}
wait_interval: 30
client_payload: '{ "dependencies_list": "${{ needs.define-dependencies.outputs.dependencies_list }}", "dependencies_branch": "${{ github.head_ref }}" }'
propagate_failure: true
trigger_workflow: true
wait_workflow: true
uses: matter-labs/era-compiler-solidity/.github/workflows/dependencies.yaml@main
secrets: inherit
with:
ref: ${{ needs.define-dependencies.outputs.zksolc_branch || 'main' }}
dependencies_list: ${{ needs.define-dependencies.outputs.dependencies_list }}
dependencies_branch: ${{ github.head_ref }}

check-zkvyper:
needs: define-dependencies
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: matter-labs
repo: era-compiler-vyper
github_token: ${{ secrets.ZKSYNC_DISPATCH_TOKEN }}
workflow_file_name: dependencies.yaml
ref: ${{ needs.define-dependencies.outputs.zkvyper_branch || 'main' }}
wait_interval: 30
client_payload: '{ "dependencies_list": "${{ needs.define-dependencies.outputs.dependencies_list }}", "dependencies_branch": "${{ github.head_ref }}" }'
propagate_failure: true
trigger_workflow: true
wait_workflow: true
uses: matter-labs/era-compiler-vyper/.github/workflows/dependencies.yaml@main
secrets: inherit
with:
ref: ${{ needs.define-dependencies.outputs.zkvyper_branch || 'main' }}
dependencies_list: ${{ needs.define-dependencies.outputs.dependencies_list }}
dependencies_branch: ${{ github.head_ref }}

0 comments on commit 282fdf2

Please sign in to comment.