Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-46084

"IllegalArgumentException : Cannot relativize '...' relatively to ...'" with symlinks

      Having jenkins installed in /app/Jenkins/home and /var/lib/jenkins symlinked to it results with this pipeline

      node {
          withMaven(maven: 'maven-3.3.9') {
              sh "mvn clean install"
          }
      }

      in this error

      ERROR: [withMaven] WARNING: Exception archiving and fingerprinting MavenArtifact{parent:pom:0.0.1-SNAPSHOT /app/Jenkins/home/workspace/testjob/pom.xml}, skip archiving of the artifacts
      java.lang.IllegalArgumentException: Cannot relativize '/app/Jenkins/home/workspace/testjob/pom.xml' relatively to '/var/lib/jenkins/workspace/testjob'
      at org.jenkinsci.plugins.pipeline.maven.util.XmlUtils.getPathInWorkspace(XmlUtils.java:226)
      at org.jenkinsci.plugins.pipeline.maven.publishers.GeneratedArtifactsPublisher.process(GeneratedArtifactsPublisher.java:80)
      at org.jenkinsci.plugins.pipeline.maven.MavenSpyLogProcessor.processMavenSpyLogs(MavenSpyLogProcessor.java:109)
      at org.jenkinsci.plugins.pipeline.maven.WithMavenStepExecution$Callback.finished(WithMavenStepExecution.java:864)
      at org.jenkinsci.plugins.workflow.steps.BodyExecutionCallback$TailCall.onSuccess(BodyExecutionCallback.java:114)
      at org.jenkinsci.plugins.workflow.cps.CpsBodyExecution$SuccessAdapter.receive(CpsBodyExecution.java:362)
      at com.cloudbees.groovy.cps.Outcome.resumeFrom(Outcome.java:73)
      at com.cloudbees.groovy.cps.Continuable$1.call(Continuable.java:165)
      at com.cloudbees.groovy.cps.Continuable$1.call(Continuable.java:162)
      at org.codehaus.groovy.runtime.GroovyCategorySupport$ThreadCategoryInfo.use(GroovyCategorySupport.java:122)
      at org.codehaus.groovy.runtime.GroovyCategorySupport.use(GroovyCategorySupport.java:261)
      at com.cloudbees.groovy.cps.Continuable.run0(Continuable.java:162)
      at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.access$001(SandboxContinuable.java:19)
      at org.jenkinsci.plugins.workflow.cps.SandboxContinuable$1.call(SandboxContinuable.java:35)
      at org.jenkinsci.plugins.workflow.cps.SandboxContinuable$1.call(SandboxContinuable.java:32)
      at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox.runInSandbox(GroovySandbox.java:108)
      at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.run0(SandboxContinuable.java:32)
      at org.jenkinsci.plugins.workflow.cps.CpsThread.runNextChunk(CpsThread.java:174)
      at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.run(CpsThreadGroup.java:330)
      at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.access$100(CpsThreadGroup.java:82)
      at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:242)
      at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:230)
      at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$2.call(CpsVmExecutorService.java:64)
      at java.util.concurrent.FutureTask.run(FutureTask.java:266)
      at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:112)
      at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
      at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
      at java.util.concurrent.FutureTask.run(FutureTask.java:266)
      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
      at java.lang.Thread.run(Thread.java:745)

      This issue might be related to https://issues.jenkins-ci.org/browse/JENKINS-44359

          [JENKINS-46084] "IllegalArgumentException : Cannot relativize '...' relatively to ...'" with symlinks

          Alexander Falb created issue -
          Alexander Falb made changes -
          Description Original: Having jenkins installed in /app/Jenkins/home and /var/lib/jenkins symlinked to it results with this pipeline
          {code:java}
          node {
              withMaven(maven: 'maven-3.3.9') {
                  sh "mvn clean install"
              }
          }{code}
          in this error
          {code:java}
          java.lang.IllegalArgumentException: Cannot relativize '/app/Jenkins/home/workspace/testjob/pom.xml' relatively to '/var/lib/jenkins/workspace/testjob'{code}
          This issue might be related to https://issues.jenkins-ci.org/browse/JENKINS-44359
          New: Having jenkins installed in /app/Jenkins/home and /var/lib/jenkins symlinked to it results with this pipeline
          {code:java}
          node {
              withMaven(maven: 'maven-3.3.9') {
                  sh "mvn clean install"
              }
          }{code}
          in this error
          {code:java}
          ERROR: [withMaven] WARNING: Exception archiving and fingerprinting MavenArtifact{parent:pom:0.0.1-SNAPSHOT /app/Jenkins/home/workspace/testjob/pom.xml}, skip archiving of the artifacts
          java.lang.IllegalArgumentException: Cannot relativize '/app/Jenkins/home/workspace/testjob/pom.xml' relatively to '/var/lib/jenkins/workspace/testjob'
          at org.jenkinsci.plugins.pipeline.maven.util.XmlUtils.getPathInWorkspace(XmlUtils.java:226)
          at org.jenkinsci.plugins.pipeline.maven.publishers.GeneratedArtifactsPublisher.process(GeneratedArtifactsPublisher.java:80)
          at org.jenkinsci.plugins.pipeline.maven.MavenSpyLogProcessor.processMavenSpyLogs(MavenSpyLogProcessor.java:109)
          at org.jenkinsci.plugins.pipeline.maven.WithMavenStepExecution$Callback.finished(WithMavenStepExecution.java:864)
          at org.jenkinsci.plugins.workflow.steps.BodyExecutionCallback$TailCall.onSuccess(BodyExecutionCallback.java:114)
          at org.jenkinsci.plugins.workflow.cps.CpsBodyExecution$SuccessAdapter.receive(CpsBodyExecution.java:362)
          at com.cloudbees.groovy.cps.Outcome.resumeFrom(Outcome.java:73)
          at com.cloudbees.groovy.cps.Continuable$1.call(Continuable.java:165)
          at com.cloudbees.groovy.cps.Continuable$1.call(Continuable.java:162)
          at org.codehaus.groovy.runtime.GroovyCategorySupport$ThreadCategoryInfo.use(GroovyCategorySupport.java:122)
          at org.codehaus.groovy.runtime.GroovyCategorySupport.use(GroovyCategorySupport.java:261)
          at com.cloudbees.groovy.cps.Continuable.run0(Continuable.java:162)
          at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.access$001(SandboxContinuable.java:19)
          at org.jenkinsci.plugins.workflow.cps.SandboxContinuable$1.call(SandboxContinuable.java:35)
          at org.jenkinsci.plugins.workflow.cps.SandboxContinuable$1.call(SandboxContinuable.java:32)
          at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox.runInSandbox(GroovySandbox.java:108)
          at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.run0(SandboxContinuable.java:32)
          at org.jenkinsci.plugins.workflow.cps.CpsThread.runNextChunk(CpsThread.java:174)
          at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.run(CpsThreadGroup.java:330)
          at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.access$100(CpsThreadGroup.java:82)
          at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:242)
          at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:230)
          at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$2.call(CpsVmExecutorService.java:64)
          at java.util.concurrent.FutureTask.run(FutureTask.java:266)
          at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:112)
          at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
          at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
          at java.util.concurrent.FutureTask.run(FutureTask.java:266)
          at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
          at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
          at java.lang.Thread.run(Thread.java:745){code}
          This issue might be related to https://issues.jenkins-ci.org/browse/JENKINS-44359
          Cyrille Le Clerc made changes -
          Assignee Original: Alvaro Lobato [ alobato ] New: Cyrille Le Clerc [ cleclerc ]
          Cyrille Le Clerc made changes -
          Summary Original: [TasksScannerPublisher] IllegalArgumentException with symlinks New: IllegalArgumentException with symlinks
          Cyrille Le Clerc made changes -
          Summary Original: IllegalArgumentException with symlinks New: : Cannot relativize '...' relatively to ...'" with symlinks

          Code changed in jenkins
          User: Cyrille Le Clerc
          Path:
          jenkins-plugin/src/main/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtils.java
          jenkins-plugin/src/test/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtilsTest.java
          http://jenkins-ci.org/commit/pipeline-maven-plugin/76cdc728f341b3e28a4a09a624dd36eef049387f
          Log:
          JENKINS-46084 workaround symlinks handling on the path of the workspace

          SCM/JIRA link daemon added a comment - Code changed in jenkins User: Cyrille Le Clerc Path: jenkins-plugin/src/main/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtils.java jenkins-plugin/src/test/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtilsTest.java http://jenkins-ci.org/commit/pipeline-maven-plugin/76cdc728f341b3e28a4a09a624dd36eef049387f Log: JENKINS-46084 workaround symlinks handling on the path of the workspace

          Code changed in jenkins
          User: Cyrille Le Clerc
          Path:
          jenkins-plugin/src/main/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtils.java
          jenkins-plugin/src/test/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtilsTest.java
          http://jenkins-ci.org/commit/pipeline-maven-plugin/1f867a959b1f9bb06434272fe55c372e27c1ac0a
          Log:
          Merge pull request #77 from jenkinsci/JENKINS-46084

          JENKINS-46084 workaround symlinks handling on the path of the works…

          Compare: https://github.com/jenkinsci/pipeline-maven-plugin/compare/9058b84a0c42...1f867a959b1f

          SCM/JIRA link daemon added a comment - Code changed in jenkins User: Cyrille Le Clerc Path: jenkins-plugin/src/main/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtils.java jenkins-plugin/src/test/java/org/jenkinsci/plugins/pipeline/maven/util/XmlUtilsTest.java http://jenkins-ci.org/commit/pipeline-maven-plugin/1f867a959b1f9bb06434272fe55c372e27c1ac0a Log: Merge pull request #77 from jenkinsci/ JENKINS-46084 JENKINS-46084 workaround symlinks handling on the path of the works… Compare: https://github.com/jenkinsci/pipeline-maven-plugin/compare/9058b84a0c42...1f867a959b1f

          Cyrille Le Clerc added a comment - - edited

          Fixed in 3.0.0-beta

           

          elexx can you please verify that 3.0.0-beta-4 fixes your symlink problem? https://github.com/jenkinsci/pipeline-maven-plugin/releases/tag/pipeline-maven-3.0.0-beta-4 ?

          Cyrille Le Clerc added a comment - - edited Fixed in 3.0.0-beta   elexx can you please verify that 3.0.0-beta-4 fixes your symlink problem?  https://github.com/jenkinsci/pipeline-maven-plugin/releases/tag/pipeline-maven-3.0.0-beta-4  ?
          Cyrille Le Clerc made changes -
          Summary Original: : Cannot relativize '...' relatively to ...'" with symlinks New: Cannot relativize '...' relatively to ...'" with symlinks
          Cyrille Le Clerc made changes -
          Summary Original: Cannot relativize '...' relatively to ...'" with symlinks New: "Cannot relativize '...' relatively to ...'" with symlinks

            cleclerc Cyrille Le Clerc
            elexx Alexander Falb
            Votes:
            2 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: