Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline 76bc3b6c5 -> 6c879bb6e
Jenkinsfile: rm -rf instead of removeDir() because of JENKINS-41894 Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/6c879bb6 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/6c879bb6 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/6c879bb6 Branch: refs/heads/feature/cd-pipeline Commit: 6c879bb6eae008303d53b21b4417c657872d10b8 Parents: 76bc3b6 Author: Dominik Psenner <[email protected]> Authored: Wed Jul 5 18:40:14 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Wed Jul 5 18:40:14 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/6c879bb6/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index a5f5779..81db159 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -115,7 +115,7 @@ pipeline { } } steps { - deleteDir() + sh "rm -rf ./" 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 { - deleteDir() + sh "rm -rf ./" 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 { - deleteDir() + sh "rm -rf ./" 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 { - deleteDir() + sh "rm -rf ./" checkout scm // workaround: https://github.com/NuGet/Home/issues/5106
