itchy/Jenkinsfile
2018-03-26 02:31:37 -07:00

11 lines
110 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
sh 'moonc .'
}
}
}
}