Merge pull request #137 from bitwiseman/patch-2

Updated for latest Pipeline fixes
This commit is contained in:
R. Tyler Croy 2016-11-17 13:56:48 -08:00 committed by GitHub
commit f9957b5629
1 changed files with 20 additions and 20 deletions

6
Jenkinsfile vendored
View File

@ -4,7 +4,7 @@
properties([[$class: 'BuildDiscarderProperty',
strategy: [$class: 'LogRotator', numToKeepStr: '10']]])
stage 'Build'
stage ('Build') {
node {
// Checkout
@ -20,8 +20,7 @@ node {
archive (includes: 'pkg/*.gem')
// publish html
// "target:" shouldn't be needed, https://issues.jenkins-ci.org/browse/JENKINS-29711.
publishHTML (target: [
publishHTML ([
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
@ -31,3 +30,4 @@ node {
])
}
}