Skip to content

Commit

Permalink
Add missing Gradle tests for KGP 1.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipDolnik committed May 9, 2024
1 parent 250b246 commit 81ccd8d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ object SkieTestRunnerConfiguration {
val targets = list("matrix.targets", ::KotlinTargetOrPreset) ?: listOf(KotlinTarget.Preset.Root)
val configurations = list<BuildConfiguration>("matrix.configurations")
val linkModes = list<LinkMode>("matrix.linkModes")
val kotlinVersions = list("matrix.kotlinVersions", ::KotlinVersion) ?: listOf("1.8.0", "1.8.20", "1.9.20", "2.0.0-RC2").map(::KotlinVersion)
// TODO Automatically derive from Build-setup
val kotlinVersions = list("matrix.kotlinVersions", ::KotlinVersion) ?: listOf("1.8.0", "1.8.20", "1.9.0", "1.9.20", "2.0.0-RC2").map(::KotlinVersion)
val gradleVersions = list("matrix.gradleVersions", ::GradleVersion) ?: listOf("8.6").map(::GradleVersion)

fun buildMatrixSource(): SkieTestMatrixSource {
Expand Down

0 comments on commit 81ccd8d

Please sign in to comment.