Updated for latest Pipeline fixes

JENKINS-29711 was fixed and stage step now uses curly braces
This commit is contained in:
Liam Newman 2016-11-17 13:53:09 -08:00 committed by GitHub
parent 68515effc7
commit 35eba84dc6
1 changed files with 20 additions and 20 deletions

8
Jenkinsfile vendored
View File

@ -4,9 +4,9 @@
properties([[$class: 'BuildDiscarderProperty',
strategy: [$class: 'LogRotator', numToKeepStr: '10']]])
stage 'Build'
stage ('Build') {
node {
node {
// Checkout
checkout scm
@ -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,
@ -30,4 +29,5 @@ node {
reportName: "RCov Report"
])
}
}