diff --git a/.github/workflows/benchmarks-integration-tests.yml b/.github/workflows/benchmarks-integration-tests.yml index ffe2927048ab..145c58a75132 100644 --- a/.github/workflows/benchmarks-integration-tests.yml +++ b/.github/workflows/benchmarks-integration-tests.yml @@ -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 }} @@ -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