Added Jenkinsfile

This commit is contained in:
Glenn Y. Rolland 2019-10-31 17:19:52 +01:00
parent 4f2a9a4f5b
commit 32e2ab18d0

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'go build'
}
}
}
}