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 7c71145c09399e14271224b5c36faaee64dc405c Author: Sylwester Lachiewicz <slachiew...@gmail.com> AuthorDate: Fri Sep 14 00:51:05 2018 +0200 Jenkins build - include full path in Windows workspace directory name 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()) {