You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lp...@apache.org on 2023/03/15 05:19:39 UTC

[shiro] branch 1.11.x updated: fix(Jenkins): cleanWs() -> cleanBeforeCheckout()

This is an automated email from the ASF dual-hosted git repository.

lprimak pushed a commit to branch 1.11.x
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/1.11.x by this push:
     new 55e62ac7 fix(Jenkins): cleanWs() -> cleanBeforeCheckout()
55e62ac7 is described below

commit 55e62ac7b6e9f7ebb59b7facab8970fa905e954a
Author: lprimak <le...@flowlogix.com>
AuthorDate: Wed Mar 15 01:15:24 2023 -0400

    fix(Jenkins): cleanWs() -> cleanBeforeCheckout()
---
 .jenkins.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.jenkins.groovy b/.jenkins.groovy
index a20c7c18..88b30339 100644
--- a/.jenkins.groovy
+++ b/.jenkins.groovy
@@ -72,7 +72,7 @@ pipeline {
                     stage('Cleanup') {
                         steps {
                             echo 'Cleaning up the workspace'
-                            cleanWs()
+                            cleanBeforeCheckout()
                         }
                     }
 
@@ -160,7 +160,7 @@ Check console output at "<a href="${env.BUILD_URL}">${env.JOB_NAME} [${env.BRANC
                     success {
                         // Cleanup the build directory if the build was successful
                         // (in this cae we probably don't have to do any post-build analysis)
-                        cleanWs()
+                        cleanBeforeCheckout()
                         script {
                             if (deployableBranch
                                     && (currentBuild.previousBuild != null) && (currentBuild.previousBuild.result != 'SUCCESS')) {