Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Jan 28, 2025
1 parent d93d937 commit e3475bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Run benchmarks
shell: bash -ex {0}
run: |
MODE="${{ inputs.compiler_llvm_benchmark_mode || 'Y+M^B3' }}"
MODE="${{ inputs.compiler_llvm_benchmark_mode || '^M^B3' }}"
if [[ -n "${{ inputs.target-machine }}" && "${{ inputs.target-machine }}" != "default" ]]; then
TARGET="--target ${{ inputs.target-machine }}"
fi
Expand All @@ -185,6 +185,10 @@ jobs:
ENVIRONMENT="--environment ${{ inputs.environment }}"
fi
if [[ "${{ inputs.target-machine }}" == "evm" ]] && [[ "${{ inputs.toolchain }}" == "ir-llvm" ]]; then
MODE="Y+M^B3"
fi
./target/release/compiler-tester ${TARGET} ${TOOLCHAIN} ${ENVIRONMENT} \
--zksolc './target-zksolc/release/zksolc' \
--zkvyper './target-zkvyper/release/zkvyper' \
Expand Down

0 comments on commit e3475bd

Please sign in to comment.