Merge pull request #1919 from SvenDowideit/add-jenkinsfile

Add docs checking Jenkinsfile
This commit is contained in:
Richard Scothern 2016-08-22 11:07:35 -07:00 committed by GitHub
commit 4107cdb633

8
Jenkinsfile vendored Normal file
View file

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