Jenkinsfile: attempt to fix stash of site This reverts commit b3cb9cb9b5ca5007a82774762c54c5aa8bfd6755.
Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/83c4229c Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/83c4229c Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/83c4229c Branch: refs/heads/develop Commit: 83c4229c9ec543c0a21f2273e9975fef92d41283 Parents: b3cb9cb Author: Dominik Psenner <[email protected]> Authored: Mon Jul 3 14:57:08 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Mon Jul 3 14:57:47 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/83c4229c/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 3962cfa..0ec4ed9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -35,7 +35,7 @@ pipeline { steps { checkout scm bat "${NANT_BIN} -buildfile:log4net.build compile-net-4.0" - stash includes: 'bin/**.*', name: 'net-4.0-assemblies' + stash includes: 'bin/**/*.*', name: 'net-4.0-assemblies' } } stage('build net-4.0-cp') { @@ -46,7 +46,7 @@ pipeline { steps { checkout scm bat "${NANT_BIN} -buildfile:log4net.build compile-net-4.0-cp" - stash includes: 'bin/**.*', name: 'net-4.0-cp-assemblies' + stash includes: 'bin/**/*.*', name: 'net-4.0-cp-assemblies' } } stage('build net-4.5') { @@ -57,7 +57,7 @@ pipeline { steps { checkout scm bat "${NANT_BIN} -buildfile:log4net.build compile-net-4.5" - stash includes: 'bin/**.*', name: 'net-4.5-assemblies' + stash includes: 'bin/**/*.*', name: 'net-4.5-assemblies' } } stage('build mono-2.0') { @@ -70,7 +70,7 @@ pipeline { steps { checkout scm sh "nant -t:mono-2.0 -buildfile:log4net.build compile-mono-2.0" - stash includes: 'bin/**.*', name: 'mono-2.0-assemblies' + stash includes: 'bin/**/*.*', name: 'mono-2.0-assemblies' } } stage('build mono-3.5') { @@ -83,7 +83,7 @@ pipeline { steps { checkout scm sh "nant -t:mono-3.5 -buildfile:log4net.build compile-mono-3.5" - stash includes: 'bin/**.*', name: 'mono-3.5-assemblies' + stash includes: 'bin/**/*.*', name: 'mono-3.5-assemblies' } } stage('build mono-4.0') { @@ -96,7 +96,7 @@ pipeline { steps { checkout scm sh "nant -t:mono-4.0 -buildfile:log4net.build compile-mono-4.0" - stash includes: 'bin/**.*', name: 'mono-4.0-assemblies' + stash includes: 'bin/**/*.*', name: 'mono-4.0-assemblies' } } stage('build site') { @@ -111,7 +111,7 @@ pipeline { steps { checkout scm bat "${NANT_BIN} -buildfile:log4net.build generate-site" - stash includes: 'target/site/**.*', name: 'site' + stash includes: 'target/site/**/*.*', name: 'site' } } // TODO: testing needs to be refactored @@ -148,7 +148,7 @@ pipeline { } post { always { - archive '**.*' + archive '**/*.*' } failure { step([$class: 'Mailer', notifyEveryUnstableBuild: false, recipients: '[email protected]'])
