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 92a4542fdf271a6daa1abf6d60bb52b50616d6a5 Author: Sylwester Lachiewicz <slachiew...@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..d88ebca 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' : Paths.get("/mvn-it-${EXECUTOR_NUMBER}.tmp")) { def WORK_DIR=pwd() checkout tests if (isUnix()) {