Jenkinsfile: stash other 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/2623fd52 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/2623fd52 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/2623fd52 Branch: refs/heads/feature/RollingFileAppender-NG Commit: 2623fd52944b06873b3f9d4a51d19541c89abcbb Parents: 61cfa80 Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 15:37:24 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 15:37:24 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/2623fd52/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 650b075..2c47804 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,7 +61,7 @@ pipeline { bat "${NANT_BIN} -t:net-3.5 -buildfile:log4net.build compile-net-3.5-cp" stash includes: 'bin/**/*.*', name: 'net-3.5-cp-assemblies' bat "${NANT_BIN} -t:net-3.5 -buildfile:tests/nant.build runtests-net-3.5-cp" - archive 'testresults/**/*.xml' + stash includes: 'tests/bin/**/*.xml', name: 'net-3.5-cp-testresults' } } stage('build net-4.0') { @@ -75,7 +75,7 @@ pipeline { bat "${NANT_BIN} -t:net-4.0 -buildfile:log4net.build compile-net-4.0" stash includes: 'bin/**/*.*', name: 'net-4.0-assemblies' bat "${NANT_BIN} -t:net-4.0 -buildfile:tests/nant.build runtests-net-4.0" - archive 'testresults/**/*.xml' + stash includes: 'tests/bin/**/*.xml', name: 'net-4.0-testresults' } } stage('build net-4.0-cp') { @@ -89,7 +89,7 @@ pipeline { bat "${NANT_BIN} -t:net-4.0 -buildfile:log4net.build compile-net-4.0-cp" stash includes: 'bin/**/*.*', name: 'net-4.0-cp-assemblies' bat "${NANT_BIN} -t:net-4.0 -buildfile:tests/nant.build runtests-net-4.0-cp" - archive 'testresults/**/*.xml' + stash includes: 'tests/bin/**/*.xml', name: 'net-4.0-cp-testresults' } } stage('build net-4.5') { @@ -103,7 +103,7 @@ pipeline { bat "${NANT_BIN} -t:net-4.0 -buildfile:log4net.build compile-net-4.5" stash includes: 'bin/**/*.*', name: 'net-4.5-assemblies' bat "${NANT_BIN} -t:net-4.0 -buildfile:tests/nant.build runtests-net-4.5" - archive 'testresults/**/*.xml' + stash includes: 'tests/bin/**/*.xml', name: 'net-4.5-testresults' } } stage('build mono-2.0') { @@ -201,6 +201,10 @@ pipeline { // unstash test results unstash 'net-3.5-testresults' + unstash 'net-3.5-cp-testresults' + unstash 'net-4.0-testresults' + unstash 'net-4.0-cp-testresults' + unstash 'net-4.5-testresults' // unstash site unstash 'site'
