1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2026-05-17 19:12:07 +00:00

Disable "disableRecompilation" in CI

Hadn't realised that a MDG version bump started enabling this in CI.
Ughgr, wish people didn't change behaviour based on environment
variables, makes it harder to test.
This commit is contained in:
Jonathan Coates
2026-01-26 22:54:13 +00:00
parent 4a6ec54813
commit d5e45b65bf
@@ -19,7 +19,12 @@ val mcVersion: String by extra
legacyForge {
val libs = project.extensions.getByType<VersionCatalogsExtension>().named("libs")
version = "$mcVersion-${libs.findVersion("forge").get()}"
enable {
forgeVersion = "$mcVersion-${libs.findVersion("forge").get()}"
// This causes parameters to not be renamed, which causes issues with ErrorProne.
// See https://github.com/google/error-prone/issues/5398.
isDisableRecompilation = false
}
parchment {
minecraftVersion = libs.findVersion("parchmentMc").get().toString()