Skip to content

Commit

Permalink
Updated ref tests to v1.5.0-alpha.2 (#8299)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassaldanha authored May 9, 2024
1 parent 1991869 commit fe3605a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ allprojects {
}
}

def refTestVersion = 'v1.4.0' // Arbitrary change to refresh cache number: 1
def refTestVersion = 'v1.5.0-alpha.2'
def blsRefTestVersion = 'v0.1.2'
def slashingProtectionInterchangeRefTestVersion = 'v5.3.0'
def refTestBaseUrl = 'https://github.com/ethereum/consensus-spec-tests/releases/download'
Expand Down
7 changes: 6 additions & 1 deletion eth-reference-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,9 @@ task generateReferenceTestClasses(type: JavaExec) {
systemProperty("teku.ref-test-module.path", project.file("../eth-reference-tests").absolutePath)
}

compileReferenceTestJava.dependsOn(generateReferenceTestClasses)
compileReferenceTestJava {
dependsOn generateReferenceTestClasses
// Fork worker to compile tests and avoid OoM errors during compilation
options.fork = true
options.forkOptions.memoryMaximumSize = "2048m"
}

0 comments on commit fe3605a

Please sign in to comment.