ReaderforSelfoss/settings.gradle
2018-03-28 21:11:25 +02:00

15 lines
288 B
Groovy

include ':app'
ext.isCiServer = !!System.getProperty("CI")
buildCache {
local {
enabled = !isCiServer
}
remote(HttpBuildCache) {
url = System.getProperty("cacheUrl")
push = isCiServer
println "url ? " + System.getProperty("cacheUrl")
}
}