Skip to content

Commit

Permalink
[Jenkins] Always run docs job.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed Sep 23, 2016
1 parent 717f675 commit cccd18f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ node('master') {
builders['gcc'] = { load 'scripts/jenkins/gcc.groovy' }
builders['msvc'] = { load 'scripts/jenkins/msvc.groovy' }
builders['mac'] = { load 'scripts/jenkins/mac.groovy' }
builders['docs'] = { load 'scripts/jenkins/docs.groovy' }

if (helper.isRelease()) {
builders['msvc32'] = { load 'scripts/jenkins/msvc32.groovy' }
Expand Down
2 changes: 1 addition & 1 deletion scripts/jenkins/docs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ node('docker') {
}

stage 'Reports (Docs)'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false,
publishHTML(target: [allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false,
reportDir: 'build/docs', reportFiles: 'index.html', reportName: 'Doxygen'])
step([$class: 'WarningsPublisher', canComputeNew: false,
canResolveRelativePaths: false, consoleParsers: [[parserName: 'Doxygen']],
Expand Down

0 comments on commit cccd18f

Please sign in to comment.