Run smoke tests only on java 11 (#1247)
This commit is contained in:
parent
3e00cdb189
commit
d59a0d3898
|
@ -1,3 +1,11 @@
|
||||||
|
ext {
|
||||||
|
// we only need to run the Spock test itself under a single Java version, and the Spock test in
|
||||||
|
// turn is parameterized and runs the test using different docker containers that run different
|
||||||
|
// Java versions
|
||||||
|
minJavaVersionForTests = JavaVersion.VERSION_11
|
||||||
|
maxJavaVersionForTests = JavaVersion.VERSION_11
|
||||||
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/gradle/java.gradle"
|
apply from: "$rootDir/gradle/java.gradle"
|
||||||
|
|
||||||
description = 'smoke-tests'
|
description = 'smoke-tests'
|
||||||
|
|
Loading…
Reference in New Issue