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 2019/03/16 18:54:14 UTC

[maven-jenkins-lib] branch master updated: Change workspace path for Windows

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 a61cb0b  Change workspace path for Windows
a61cb0b is described below

commit a61cb0b27180bb56ab5e3b7c70203aec02e3a616
Author: rfscholte <rf...@apache.org>
AuthorDate: Sat Mar 16 19:54:05 2019 +0100

    Change workspace path for Windows
---
 vars/asfMavenTlpPlgnBuild.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index e917f26..ed7af0b 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -149,7 +149,8 @@ def doCreateTask( os, jdk, maven, tasks, first, plan, taskContext )
     node(jenkinsEnv.nodeSelection(label)) {
       def wsDir = pwd()
 	  if (os == 'windows' && taskContext.tmpWs) {
-	    wsDir = "$TEMP\\$BUILD_TAG" // or use F:\jenkins\jenkins-slave\workspace or F:\short
+//	    wsDir = "$TEMP\\$BUILD_TAG" // or use F:\jenkins\jenkins-slave\workspace or F:\short
+	    wsDir = "F:\\short\\$BUILD_TAG"
 	  }
       ws( dir : "$wsDir" )
       {