From 0aa9ef7b5d678417dd501155b879cdf2d4483a40 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Wed, 31 Jul 2019 12:35:54 +0200 Subject: [PATCH] Simplify Jenkinsfile --- Jenkinsfile | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 56bfc82..39f5938 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,23 +8,14 @@ pipeline { } stages { - stage('Fetch go dependencies') { - environment { - BUILDDIR = "${GOPATH}/src/git.cacert.org/cacert-boardvoting" - } + stage('Remove old build directory') { steps { - sh "rm -rf '${GOPATH}/src/git.cacert.org' ; mkdir -p '${GOPATH}/src/git.cacert.org'" - sh "ln -s '${pwd()}' '${BUILDDIR}'" - sh "cd '${BUILDDIR}' ; go get -u github.com/golang/dep/cmd/dep && dep ensure -v" - sh "go get -u github.com/shuLhan/go-bindata/go-bindata" + sh "rm -rf '${GOPATH}/src/git.cacert.org'" } } stage('Build') { - environment { - BUILDDIR = "${GOPATH}/src/git.cacert.org/cacert-boardvoting" - } steps { - sh "cd '${BUILDDIR}' ; make clean && make BUILD='${env.BUILD_TAG}'" + sh "make clean && make BUILD='${env.BUILD_TAG}'" } } stage('Create build output') {