Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- release-*
- verkle
- performance
- fusaka-*

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- release-*
- verkle
- performance
- fusaka-*

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pre-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- release-*
- verkle
- performance
- fusaka-*

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reference-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- release-*
- verkle
- performance
- fusaka-*

env:
GRADLE_OPTS: "-Xmx6g -Dorg.gradle.daemon=false -Dorg.gradle.parallel=true -Dorg.gradle.caching=true"
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ configure(allprojects - project(':platform')) {
def ethExecSpecTestsRepo = ivy {
url 'https://github.com'
patternLayout {
artifact '/[organisation]/[module]/releases/download/[revision]/[classifier].[ext]' }
artifact '/[organisation]/[module]/releases/download/[revision]/[classifier].[ext]'
}
metadataSources {
artifact()
}
Expand Down
2 changes: 1 addition & 1 deletion ethereum/referencetests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ dependencies {
referenceTestImplementation project(path: ':testutil')
referenceTestImplementation project(path: ':util')
// the following will be resolved via custom ivy repository declared in root build.gradle
referenceTestImplementation 'ethereum:execution-spec-tests:fusaka-devnet-2@v0.1.0:fixtures_fusaka-devnet-2@tar.gz'
referenceTestImplementation 'ethereum:execution-spec-tests:fusaka-devnet-2@v1.0.0:fixtures_fusaka-devnet-2@tar.gz'
referenceTestImplementation 'com.fasterxml.jackson.core:jackson-databind'
referenceTestImplementation 'com.google.guava:guava'
referenceTestImplementation 'io.consensys.tuweni:tuweni-bytes'
Expand Down
5 changes: 5 additions & 0 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1295,6 +1295,11 @@
<sha256 value="7e3240ab94438ada00958b0442cee32d2417c3cf762c848890499dae0ff1d90b" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="ethereum" name="execution-spec-tests" version="fusaka-devnet-2@v1.0.0">
<artifact name="execution-spec-tests-fusaka-devnet-2@v1.0.0-fixtures_fusaka-devnet-2.tar.gz">
<sha256 value="c2464c75fa5806573c7f2558c768f15c33710e1f93b0120dfbd9e9e17f612559" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="info.picocli" name="picocli" version="4.7.6">
<artifact name="picocli-4.7.6.jar">
<sha256 value="ed441183f309b93f104ca9e071e314a4062a893184e18a3c7ad72ec9cba12ba0" origin="Generated by Gradle"/>
Expand Down
Loading