You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2018/06/29 18:14:29 UTC

[maven-jenkins-lib] branch master updated: Ensure tasks on the same Jenkins instance don't block each others checkout

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

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new 1646fb2  Ensure tasks on the same Jenkins instance don't block each others checkout
1646fb2 is described below

commit 1646fb262e4e154decf3d9d1922be9a56bcc52b2
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jun 29 20:14:02 2018 +0200

    Ensure tasks on the same Jenkins instance don't block each others checkout
---
 vars/asfMavenTlpPlgnBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index 6a0ea54..1affa38 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -120,7 +120,7 @@ def doCreateTask( os, jdk, maven, tasks, first, taskContext )
 	  node(label) {
 		stage("Checkout ${stageId}") {
 		  try {
-			dir('m') {
+			dir(stageId) {
 			  checkout scm
 			}
 		  } catch (Throwable e) {