Skip to content

Commit

Permalink
ci: use proper environment for benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Jan 29, 2025
1 parent 45b74e2 commit 26c2bd0
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/benchmarks-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,18 @@ jobs:
# If you would like to make a change to the benchmarks workflow, please do it in the era-compiler-ci repository
benchmarks:
needs: [compiler-tester-ref]
uses: matter-labs/era-compiler-ci/.github/workflows/benchmarks.yml@v1
uses: matter-labs/era-compiler-ci/.github/workflows/benchmarks.yml@aba-fix-env
secrets: inherit
strategy:
fail-fast: false
matrix:
target: ['eravm', 'evm']
toolchain: ['ir-llvm']
include:
- target: 'eravm'
toolchain: 'ir-llvm'
environment: 'zk_evm'
- target: 'evm'
toolchain: 'ir-llvm'
environment: 'EVMInterpreter'
with:
compiler_tester_reference_branch: ${{ needs.compiler-tester-ref.outputs.reference-ref }}
compiler_tester_candidate_branch: ${{ needs.compiler-tester-ref.outputs.candidate-ref }}
Expand All @@ -121,7 +126,7 @@ jobs:
target-machine: ${{ matrix.target }}
toolchain: ${{ matrix.toolchain }}
ccache-key: 'llvm-Linux-X64-gnu'
environment: 'EVMInterpreter'
environment: ${{ matrix.environment }}

# Integration tests workflow call from the era-compiler-ci repository
# This is a common part of the integration tests workflow for all repositories
Expand Down

0 comments on commit 26c2bd0

Please sign in to comment.