Repository: logging-log4j2 Updated Branches: refs/heads/master 8d9151a30 -> 7bed274d8
Add junit test result archival to jenkins build Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/7bed274d Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/7bed274d Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/7bed274d Branch: refs/heads/master Commit: 7bed274d83cbce0b135c49e62985a9a2e8208ce0 Parents: 8d9151a Author: Matt Sicker <[email protected]> Authored: Sat Apr 7 17:05:18 2018 -0500 Committer: Matt Sicker <[email protected]> Committed: Sat Apr 7 17:05:18 2018 -0500 ---------------------------------------------------------------------- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7bed274d/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 31735cd..b1efb44 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,6 +36,7 @@ pipeline { steps { ansiColor('xterm') { sh 'mvn -t toolchains-jenkins-ubuntu.xml -Djenkins -V install' + junit '*/target/*-reports/*.xml' stash includes: 'target/**', name: 'target' } } @@ -51,6 +52,7 @@ pipeline { steps { bat 'if exist %userprofile%\\.embedmongo\\ rd /s /q %userprofile%\\.embedmongo' bat 'mvn -t toolchains-jenkins-win.xml -V -Dfile.encoding=UTF-8 install' + junit '*/target/*-reports/*.xml' } } }
