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

martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-parent.git


The following commit(s) were added to refs/heads/master by this push:
     new 4be05d0  Using unique ws names
4be05d0 is described below

commit 4be05d08162010a64e229d891f154de6d4615b8c
Author: Martin Stockhammer <martin.stockham...@ars.de>
AuthorDate: Thu May 17 23:46:13 2018 +0200

    Using unique ws names
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index a10de27..efecf48 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -45,7 +45,7 @@ pipeline {
             parallel {
                 stage('JDK9') {
                     steps {
-                        ws('JDK9') {
+                        ws("${env.JOB_NAME}-JDK9") {
                             checkout scm
                             timeout(20) {
                                 withMaven(maven: buildMvn, jdk: buildJdk9,
@@ -67,7 +67,7 @@ pipeline {
                 }
                 stage('JDK10') {
                     steps {
-                        ws('JDK10') {
+                        ws("${env.JOB_NAME}-JDK10") {
                             checkout scm
                             timeout(20) {
                                 withMaven(maven: buildMvn, jdk: buildJdk9,
@@ -97,7 +97,7 @@ pipeline {
             notifyBuild("Unstable Build")
         }
         always {
-            cleanWs deleteDirs: true, notFailBuild: true, patterns: [[pattern: 
'.repository', type: 'EXCLUDE'],[pattern: '.repository/**', type: 'EXCLUDE']]
+            // cleanWs deleteDirs: true, notFailBuild: true, patterns: 
[[pattern: '.repository', type: 'EXCLUDE'],[pattern: '.repository/**', type: 
'EXCLUDE']]
         }
         success {
             script {

-- 
To stop receiving notification emails like this one, please contact
marti...@apache.org.

Reply via email to