From 3efa0f069ffe4dfcb3531ea89834e69cd2257157 Mon Sep 17 00:00:00 2001 From: Derek Straka Date: Tue, 22 May 2018 09:44:21 -0400 Subject: [PATCH] Update Jenkins file to point to sumo branches Signed-off-by: Derek Straka --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 216783c..d96f7fe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ for (int i = 0; i < targets.size(); i++) { sh "./scripts/setup-env.sh" } 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") { sh "MACHINE=${machine} ./scripts/build.sh" @@ -25,7 +25,7 @@ for (int i = 0; i < targets.size(); i++) { throw e } finally { stage("push build cache $machine") { - sh "./scripts/publish-build-cache.sh master" + sh "./scripts/publish-build-cache.sh sumo" } stage("cleanup $machine") { sh "./scripts/cleanup-env.sh"