Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline 6c879bb6e -> 55f5058ec
Jenkinsfile: attempt rm -rf bin/ tests/ instead of rm -rf ./ Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/55f5058e Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/55f5058e Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/55f5058e Branch: refs/heads/feature/cd-pipeline Commit: 55f5058ec4cdbb01aa12648394dd8259bad7c545 Parents: 6c879bb Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 18:53:34 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 18:53:34 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/55f5058e/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 81db159..6780551 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -115,7 +115,7 @@ pipeline { } } steps { - sh "rm -rf ./" + sh "rm -rf bin/ tests/" checkout scm sh "nant -t:mono-2.0 -buildfile:log4net.build compile-mono-2.0" stash includes: 'bin/**/*.*', name: 'mono-2.0-assemblies' @@ -132,7 +132,7 @@ pipeline { } } steps { - sh "rm -rf ./" + sh "rm -rf bin/ tests/" checkout scm sh "nant -t:mono-3.5 -buildfile:log4net.build compile-mono-3.5" stash includes: 'bin/**/*.*', name: 'mono-3.5-assemblies' @@ -149,7 +149,7 @@ pipeline { } } steps { - sh "rm -rf ./" + sh "rm -rf bin/ tests/" checkout scm sh "nant -t:mono-4.0 -buildfile:log4net.build compile-mono-4.0" stash includes: 'bin/**/*.*', name: 'mono-4.0-assemblies' @@ -165,7 +165,7 @@ pipeline { } } steps { - sh "rm -rf ./" + sh "rm -rf bin/ tests/" checkout scm // workaround: https://github.com/NuGet/Home/issues/5106
