Skip to content

Commit

Permalink
tweaks suggested by reviewer
Browse files Browse the repository at this point in the history
  • Loading branch information
DavePearce committed Jan 17, 2025
1 parent 998091e commit 5ae61e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/reference-blockchain-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ jobs:
uses: ./.github/actions/setup-environment
with:
go-corset: true

- name: Generate block chain reference tests
run: ./gradlew :reference-tests:generateBlockchainReferenceTests -Dorg.gradle.caching=true
env:
JAVA_OPTS: -Dorg.gradle.daemon=false
ZKEVM_BIN: "zkevm_for_reference_tests.go.bin"

- name: Download artifact
uses: dawidd6/action-download-artifact@v6
Expand Down
3 changes: 1 addition & 2 deletions reference-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ tasks.register('referenceGeneralStateTests', Test) {
tasks.named("referenceBlockchainTests"),
].forEach {
it.configure {
def ZKEVM_REFTESTS_BIN = System.getenv("ZKEVM_BIN") ?: "zkevm_for_reference_tests.bin"
// Record zkevm.bin for CorsetValidator
environment.put("ZKEVM_BIN", ZKEVM_REFTESTS_BIN)
environment.put("ZKEVM_BIN", System.getenv("ZKEVM_BIN") ?: "zkevm_for_reference_tests.bin")
// Configure parallelism
systemProperty("junit.jupiter.execution.timeout.default", "15 m") // 5 minutes
systemProperty("junit.jupiter.execution.parallel.enabled", "true")
Expand Down

0 comments on commit 5ae61e9

Please sign in to comment.