ReaderforSelfoss/settings.gradle

20 lines
499 B
Groovy
Raw Normal View History

include ':app'
2018-03-27 17:59:34 +00:00
ext.isCiServer = !!System.getProperty("CI")
buildCache {
local {
enabled = !isCiServer
}
remote(HttpBuildCache) {
url = 'http://amine-bou.fr:8885/cache/'
push = isCiServer
println "user " + System.getProperty("cacheUser")
println "pass " + System.getProperty("cachePassword")
credentials {
username = System.getProperty("cacheUser")
password = System.getProperty("cachePassword")
}
}
}