Jenkinsfile: attempt to publish nunit test results
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/759790d7 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/759790d7 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/759790d7 Branch: refs/heads/feature/RollingFileAppender-NG Commit: 759790d7111dbce48805315dbe15a40180f731d4 Parents: 6605da0 Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 14:42:39 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 14:42:39 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/759790d7/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 1b4d197..aa89136 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -47,7 +47,7 @@ pipeline { bat "${NANT_BIN} -t:net-3.5 -buildfile:log4net.build compile-net-3.5" stash includes: 'bin/**/*.*', name: 'net-3.5-assemblies' bat "${NANT_BIN} -t:net-3.5 -buildfile:tests/nant.build runtests-net-3.5" - archive 'testresults/**/*.xml' + step([$class: 'NUnitPublisher', testResultsPattern: 'testresults/**/*.xml', debug: false, keepJUnitReports: true, skipJUnitArchiver:false, failIfNoResults: falsee]) } } stage('build net-3.5-cp') {
