Hi all, is there a way to turn off the Kotlin comp...
# announcements
c
Hi all, is there a way to turn off the Kotlin compiler daemon with a Gradle property or something? It doesn't play nicely with CI it seems
m
carrot:
org.gradle.daemon=false
in gradle.properties maybe.
c
That does prevent the Gradle daemon from running, but the Kotlin compiler seems to do something different: https://gist.github.com/CarrotCodes/03481cd44b454a76de090902609fed9f
That's with "./gradlew test -PBUILD_NUMBER=42 -PBRANCH=develop --no-daemon"