Create Jenkinsfile

This commit is contained in:
Paul Liverman III 2018-03-26 02:31:37 -07:00 committed by GitHub
parent d4e20dec8a
commit 2facdb610e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('build') {
steps {
sh 'moonc .'
}
}
}
}