ReaderforSelfoss/settings.gradle
2018-10-29 19:53:41 +01:00

14 lines
263 B
Groovy

include ':app'
ext.isCiServer = !!System.getProperty("CI")
buildCache {
local {
enabled = !isCiServer
}
remote(HttpBuildCache) {
// DO NOT COMMIT !!!!!
url = 'http://amine-bou.fr:8885/cache/'
push = isCiServer
}
}