Update Jenkins file to point to sumo branches

Signed-off-by: Derek Straka <derek@asterius.io>
This commit is contained in:
Derek Straka
2018-05-22 09:44:21 -04:00
parent 7cfa3db4f6
commit 3efa0f069f
Vendored
+2 -2
View File
@@ -15,7 +15,7 @@ for (int i = 0; i < targets.size(); i++) {
sh "./scripts/setup-env.sh" sh "./scripts/setup-env.sh"
} }
stage("fetch $machine") { stage("fetch $machine") {
sh "GIT_LOCAL_REF_DIR=/srv/git-cache/ ./scripts/fetch.sh master" sh "GIT_LOCAL_REF_DIR=/srv/git-cache/ ./scripts/fetch.sh sumo"
} }
stage("build $machine") { stage("build $machine") {
sh "MACHINE=${machine} ./scripts/build.sh" sh "MACHINE=${machine} ./scripts/build.sh"
@@ -25,7 +25,7 @@ for (int i = 0; i < targets.size(); i++) {
throw e throw e
} finally { } finally {
stage("push build cache $machine") { stage("push build cache $machine") {
sh "./scripts/publish-build-cache.sh master" sh "./scripts/publish-build-cache.sh sumo"
} }
stage("cleanup $machine") { stage("cleanup $machine") {
sh "./scripts/cleanup-env.sh" sh "./scripts/cleanup-env.sh"