Merge branch 'master' of github.com:glenux/musala-push

This commit is contained in:
Glenn Y. Rolland 2020-01-25 18:56:12 +01:00
commit 29c2909d1b

10
Jenkinsfile vendored Normal file
View file

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