Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"container-tests" module. #1894

Merged
merged 14 commits into from
Apr 14, 2021
Prev Previous commit
Next Next commit
Fixed build dependsOn.
Signed-off-by: Mark Terry <mark.terry@consensys.net>
  • Loading branch information
mark-terry committed Apr 1, 2021
commit 7ff20d7b8b9c6554b744966428bb69fd93c16e2b
2 changes: 1 addition & 1 deletion container-tests/tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test.enabled = false

task containerTests(type: Test) {
description = 'Runs GoQuorum <> Besu container tests.'
mark-terry marked this conversation as resolved.
Show resolved Hide resolved
dependsOn(rootProject.installDist)
dependsOn(rootProject.distDocker)
def dockerBuildVersion = project.hasProperty('release.releaseVersion') ? project.property('release.releaseVersion') : "${rootProject.version}"
def imageName = "hyperledger/besu"
def image = "${imageName}:${dockerBuildVersion}"
Expand Down