Jenkinsfile: fixed syntax errors
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/940f24a2 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/940f24a2 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/940f24a2 Branch: refs/heads/feature/RollingFileAppender-NG Commit: 940f24a25eae718e9d732a80e082775e7a48b287 Parents: d39d94d Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 16:24:53 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 16:24:53 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/940f24a2/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 89df712..f7f6999 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -216,10 +216,12 @@ pipeline { // archive package archive 'package/**/*.*' + } } // archive the tests (this also checks if tests failed; if that's the case this stage should fail) stage('check test results') { + steps { // record test results step([ $class : 'XUnitBuilder', @@ -234,6 +236,7 @@ pipeline { ] ] ]) + } } stage('publish site') {
