Browse Source

w/a: disable tests with gradle 6.4 and 6.7.1

6.4 is not supported by kotlin-gradle-plugin 1.7.0.

6.7.1 is supposed to be the min. supported version by kotlin-gradle-plugin 1.7.0. Despite that, the tests failed.

Tests pass with 7.1.1 and 7.3.3
pull/2174/head
Oleksandr Karpovich 2 years ago committed by Igor Demin
parent
commit
f59eba3027
  1. 3
      gradle-plugins/compose/build.gradle.kts

3
gradle-plugins/compose/build.gradle.kts

@ -91,7 +91,8 @@ val jar = tasks.named<Jar>("jar") {
} }
// __SUPPORTED_GRADLE_VERSIONS__ // __SUPPORTED_GRADLE_VERSIONS__
testGradleVersion("6.4") //testGradleVersion("6.7.1") // min supported by kotlin 1.7.0 gradle plugin https://kotlinlang.org/docs/gradle.html
// despite that, some tests didn't pass
testGradleVersion("7.1.1") testGradleVersion("7.1.1")
testGradleVersion("7.3.3") testGradleVersion("7.3.3")

Loading…
Cancel
Save