From 9d3b6cd3bb93f780f654466d3a10593d5526e17c Mon Sep 17 00:00:00 2001 From: Derek Straka Date: Fri, 16 Jun 2017 11:43:56 -0400 Subject: [PATCH] Jenkinsfile: update for pyro branch Signed-off-by: Derek Straka --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ca04e77..40032dd 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 pyro" } 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 pyro" } stage("cleanup $machine") { sh "./scripts/cleanup-env.sh"