jenkins: add step to check help files (#38963)

This commit is contained in:
Frédéric Péters 2020-01-14 18:20:08 +01:00
parent be49ca7694
commit 7b6e6f25d8
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored
View File

@ -3,6 +3,14 @@
pipeline {
agent any
stages {
stage('Help Check') {
steps {
script {
sh '(cd help/fr/ && if [ $(yelp-build html *.page 2>&1 | wc -c) -ne 0 ]; then exit 1; fi)'
sh 'git clean -xdf'
}
}
}
stage('Packaging') {
steps {
script {