Run smoke tests only on java 11 (#1247)

This commit is contained in:
Nikita Salnikov-Tarnovski 2020-09-24 01:03:40 +03:00 committed by GitHub
parent 3e00cdb189
commit d59a0d3898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -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"
description = 'smoke-tests'
@ -20,4 +28,4 @@ test {
doFirst {
jvmArgs "-Dio.opentelemetry.smoketest.agent.shadowJar.path=${project(':javaagent').tasks.shadowJar.archivePath}"
}
}
}