musala/Jenkinsfile

10 lines
110 B
Text
Raw Normal View History

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