musala/Jenkinsfile

10 lines
110 B
Plaintext
Raw Normal View History

2019-10-31 16:19:52 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'go build'
}
}
}
}