ReaderforSelfoss/settings.gradle
2018-03-28 19:13:47 +02:00

19 lines
418 B
Groovy

include ':app'
ext.isCiServer = !!System.getProperty("CI")
buildCache {
local {
enabled = !isCiServer
}
remote(HttpBuildCache) {
url = 'http://amine-bou.fr:8885/cache/'
push = isCiServer
println "push ? " + isCiServer
credentials {
username = System.getProperty("cacheUser")
password = System.getProperty("cachePassword")
}
}
}