Change to build directory inside shell blocks

This commit is contained in:
Jan Dittberner 2017-08-27 21:46:49 +02:00
parent 06e0a52737
commit 4afeb6ddfc

8
Jenkinsfile vendored
View file

@ -14,9 +14,7 @@ pipeline {
steps {
sh "rm -rf '${GOPATH}/src/git.cacert.org' ; mkdir -p '${GOPATH}/src/git.cacert.org'"
sh "ln -s '${pwd()}' '${BUILDDIR}'"
dir("${BUILDDIR}") {
sh "pwd ; go get -u github.com/golang/dep/cmd/dep && '${GOPATH}/bin/dep' ensure -v"
}
sh "cd '${BUILDDIR} ; go get -u github.com/golang/dep/cmd/dep && '${GOPATH}/bin/dep' ensure -v"
}
}
stage('Build') {
@ -24,9 +22,7 @@ pipeline {
BUILDDIR = "${GOPATH}/src/git.cacert.org/cacert-boardvoting"
}
steps {
dir("${BUILDDIR}") {
sh 'make clean && make'
}
sh "cd '${BUILDDIR}' ; make clean && make"
}
}
stage('Create build output') {