itchy/Jenkinsfile

11 lines
110 B
Plaintext
Raw Permalink Normal View History

2018-03-26 09:31:37 +00:00
pipeline {
agent any
stages {
stage('build') {
steps {
sh 'moonc .'
}
}
}
}