Merge pull request #1919 from SvenDowideit/add-jenkinsfile

Add docs checking Jenkinsfile
pull/1924/head
Richard Scothern 2016-08-22 11:07:35 -07:00 committed by GitHub
commit 4107cdb633
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored 100644
View File

@ -0,0 +1,8 @@
// Only run on Linux atm
wrappedNode(label: 'docker') {
deleteDir()
stage "checkout"
checkout scm
documentationChecker("docs")
}