diff options
author | Jan Dittberner <jandd@cacert.org> | 2018-03-29 22:07:50 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2018-03-29 22:07:50 +0200 |
commit | 431fba61208ec65ed8349aeef8d83634112a4a43 (patch) | |
tree | e7394f24cb5998cb67fd00d97bf37725062d9d28 | |
parent | e8720798fb39d0a31d872b9461f8b294aa741092 (diff) | |
download | cacert-boardvoting-431fba61208ec65ed8349aeef8d83634112a4a43.tar.gz cacert-boardvoting-431fba61208ec65ed8349aeef8d83634112a4a43.tar.xz cacert-boardvoting-431fba61208ec65ed8349aeef8d83634112a4a43.zip |
Make sure go-bindata is installed before building
-rw-r--r-- | Jenkinsfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 6562c24..5b89299 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,6 +15,7 @@ pipeline { 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 && '${GOPATH}/bin/dep' ensure -v" + sh "go get -u github.com/shuLhan/go-bindata" } } stage('Build') { |