Skip to content

Commit d76c975

Browse files
committed
Have perf tests on all major Gradle releases
1 parent b31cd3d commit d76c975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/perfTest/groovy/com/monits/gradle/sca/performance/fixture/AbstractPerfTestFixture.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ import spock.util.environment.Jvm
2929
@CompileStatic
3030
abstract class AbstractPerfTestFixture extends Specification {
3131
// A sample of gradle versions to be considered in general testing - don't test anything below 2.8, it spams stdout
32-
static final List<String> TESTED_GRADLE_VERSIONS = ['2.8', '2.14.1', GradleVersion.current().version].asImmutable()
32+
static final List<String> TESTED_GRADLE_VERSIONS = ['2.14.1', '3.5.1', GradleVersion.current().version].asImmutable()
3333
@SuppressWarnings(['DuplicateStringLiteral', 'UnnecessaryCast'])
34-
static final List<String> TESTED_GRADLE_VERSIONS_FOR_ANDROID = (['2.8', '2.14.1'] +
34+
static final List<String> TESTED_GRADLE_VERSIONS_FOR_ANDROID = (['2.14.1', '3.5.1'] +
3535
(Jvm.current.java8Compatible ? [GradleVersion.current().version] : [] as List<String>))
3636
.takeRight(2).asImmutable()
3737
static final String BASELINE_PLUGIN_VERSION = '"com.monits:static-code-analysis-plugin:2.6.8"'

0 commit comments

Comments
 (0)