Fix Forge 50 (1.20.6) (#219)

Co-authored-by: shedaniel <daniel@shedaniel.me>
Co-authored-by: Juuz <6596629+Juuxel@users.noreply.github.com>
This commit is contained in:
Jab125
2024-07-02 02:08:55 +10:00
committed by Juuz
parent 7dbd3c62e5
commit 9e4a70f742
25 changed files with 719 additions and 27 deletions

View File

@@ -424,6 +424,11 @@ tasks.register('writeActionsTestMatrix') {
return
}
if (it.name.endsWith("NeoForge1206Test.groovy") || it.name.endsWith("Forge1206Test.groovy")) {
// Arch: The 1.20.6 tests require Java 21
return
}
def className = it.path.toString().replace(".groovy", "")
className = className.substring(className.lastIndexOf("integration/") + "integration/".length()).replace('/', '.')