cacert-boardvoting/Jenkinsfile

32 lines
914 B
Text
Raw Normal View History

#!groovy
pipeline {
agent any
environment {
GOPATH = "${pwd()}/gocode"
2017-08-27 14:06:03 +00:00
PATH = "${pwd()}/gocode/bin:${env.PATH}"
}
stages {
stage('Fetch go dependencies') {
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'"
2017-08-27 13:56:23 +00:00
sh "go get -u github.com/golang/dep/cmd/dep"
sh "cd '${GOPATH}/src/git.cacert.org/cacert-boardvoting' ; dep ensure -v"
}
}
stage('Build') {
steps {
sh 'make clean'
sh 'make'
}
}
stage('Create build output') {
steps {
archiveArtifacts artifacts: 'cacert-boardvoting,templates/**,db/**,config.yaml.example,static/**'
}
}
}
}