You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2018/09/14 16:43:04 UTC

[maven] 01/01: Repair Jenkins job - add a full path to workspace when run on Windows

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

slachiewicz pushed a commit to branch jenkins-relativize-problem
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 0e7a8531ddc77a4b85ada49a74092c68b1a46f8f
Author: Sylwester Lachiewicz <sl...@gmail.com>
AuthorDate: Fri Sep 14 00:51:05 2018 +0200

    Repair Jenkins job - add a full path to workspace when run on Windows
    
    Fixes errors like: Cannot relativize 'c:\mvn-it-0.tmp\core-it-support\..' relatively to '/mvn-it-0.tmp'
    
    Reference JENKINS-52657
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 9fa73cd..ef2adc2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -79,7 +79,7 @@ for (String os in runITsOses) {
                     // on Windows, need a short path or we hit 256 character limit for paths
                     // using EXECUTOR_NUMBER guarantees that concurrent builds on same agent
                     // will not trample each other
-                    dir(isUnix() ? 'test' : "/mvn-it-${EXECUTOR_NUMBER}.tmp") {
+                    dir(isUnix() ? 'test' : "c:\\mvn-it-${EXECUTOR_NUMBER}.tmp") {
                         def WORK_DIR=pwd()
                         checkout tests
                         if (isUnix()) {