Cache url as parameter.

This commit is contained in:
Amine Bou 2018-03-28 21:11:25 +02:00
parent 68dc5a6acf
commit 99a305f3e2

View File

@ -7,13 +7,9 @@ buildCache {
enabled = !isCiServer enabled = !isCiServer
} }
remote(HttpBuildCache) { remote(HttpBuildCache) {
url = 'http://amine-bou.fr:8885/cache/' url = System.getProperty("cacheUrl")
push = isCiServer push = isCiServer
println "push ? " + isCiServer println "url ? " + System.getProperty("cacheUrl")
credentials {
username = System.getProperty("cacheUser")
password = System.getProperty("cachePassword")
}
} }
} }