Reduce shell calls to single steps

This commit is contained in:
Jan Dittberner 2017-08-27 21:37:26 +02:00
parent 9398d90a38
commit ebb15fc538

10
Jenkinsfile vendored
View file

@ -11,17 +11,15 @@ pipeline {
steps {
sh "rm -rf '${GOPATH}/src/git.cacert.org' ; mkdir -p '${GOPATH}/src/git.cacert.org'"
sh "ln -s '${pwd()}' '${GOPATH}/src/git.cacert.org/cacert-boardvoting'"
dir(path: "${GOPATH}/src/git.cacert.org/cacert-boardvoting") {
sh "go get -u github.com/golang/dep/cmd/dep"
sh "${GOPATH}/bin/dep ensure -v"
dir("${GOPATH}/src/git.cacert.org/cacert-boardvoting") {
sh "go get -u github.com/golang/dep/cmd/dep && '${GOPATH}/bin/dep' ensure -v"
}
}
}
stage('Build') {
steps {
dir(path: "${GOPATH}/src/git.cacert.org/cacert-boardvoting") {
sh 'make clean'
sh 'make'
dir("${GOPATH}/src/git.cacert.org/cacert-boardvoting") {
sh 'make clean && make'
}
}
}