Add a simple Pipeline to make sure this gets validated in pull requests

This commit is contained in:
R. Tyler Croy 2017-08-25 23:39:55 -07:00
parent b80a4693bd
commit 45dc2f163f
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 17 additions and 0 deletions

17
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env groovy
pipeline {
agent { label 'docker' }
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
timeout(time: 1, unit: 'HOURS')
}
stages {
stage('Validate') {
steps {
sh 'make validate'
}
}
}
}