Jenkinsfile: Update to for the newly created rocko branch

Signed-off-by: Derek Straka <derek@asterius.io>
This commit is contained in:
Derek Straka
2018-02-02 09:03:24 -05:00
parent 17cc34c9c8
commit 357f11b517

4
Jenkinsfile vendored
View File

@@ -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 rocko"
}
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 rocko"
}
stage("cleanup $machine") {
sh "./scripts/cleanup-env.sh"