2017-05-14 13:22:45 +00:00
|
|
|
#!groovy
|
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
environment {
|
2017-08-27 19:25:47 +00:00
|
|
|
GOPATH = "${pwd(tmp: true)}/gocode"
|
2018-03-29 20:12:09 +00:00
|
|
|
PATH = "${GOPATH}/bin:${PATH}"
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2019-07-31 10:46:33 +00:00
|
|
|
stage('Install go-bindata') {
|
2017-05-14 13:22:45 +00:00
|
|
|
steps {
|
2019-07-31 10:46:33 +00:00
|
|
|
sh "mkdir -p '${GOPATH}/bin'
|
|
|
|
sh "cd '${GOPATH}/bin'"
|
|
|
|
sh "go get -u -v github.com/shuLhan/go-bindata/cmd/go-bindata"
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
2019-07-31 10:46:33 +00:00
|
|
|
sh "make distclean && make BUILD='${env.BUILD_TAG}'"
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Create build output') {
|
|
|
|
steps {
|
2018-03-29 20:04:03 +00:00
|
|
|
archiveArtifacts artifacts: 'cacert-boardvoting,config.yaml.example'
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|