musala/Jenkinsfile
2019-10-31 17:19:52 +01:00

10 lines
110 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'go build'
}
}
}
}