Skip to content

Commit

Permalink
chore(build): run tests against later gradle versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrMilchmann committed Jul 22, 2024
1 parent 785e0d8 commit 0e10378
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ class LWJGLPluginTest {
// See https://docs.gradle.org/current/userguide/compatibility.html
val javaVersion = JavaVersion.current()

add("8.9")

@Suppress("UnstableApiUsage")
if (javaVersion >= JavaVersion.VERSION_22) return@buildList

add("8.8")
add("8.7")
add("8.6")
add("8.5")

@Suppress("UnstableApiUsage")
Expand Down

0 comments on commit 0e10378

Please sign in to comment.