Add a basic Jenkinsfile

This commit is contained in:
R. Tyler Croy 2017-08-24 20:37:23 -07:00 committed by GitHub
parent 03da82a86f
commit d737378b34
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent { label 'freebsd' }
stages {
stage('Build') {
steps {
sh 'AUTO_GOPATH=1 ./hack/make.sh binary'
}
}
}
}