Merge pull request #3865 from SvenDowideit/add-jenkinsfile

Add docs checking Jenkinsfile
This commit is contained in:
Sven Dowideit 2016-08-24 15:01:36 +10:00 committed by GitHub
commit 08179fc7e3
1 changed files with 8 additions and 0 deletions

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")
}