-
Bug
-
Resolution: Fixed
-
Blocker
-
None
-
Windows 10.
steps to reproduce
- Create a new master on windows 10 - set to use zero executors
- Create a new agent use launch as command and use java -jar C:\workarea\wars\
JENKINS-43638\war\WEB-INF\slave.jar as the command. - specify to start the node in C:\workarea\wars\DELETE_ME
- install maven plugin and maven pipeline plugin
- run a pipeline like the following
node { withMaven(maven: 'default') { git changelog: false, poll: false, url: 'https://github.com/jtnord/maven-test-project.git' bat "mvn package" } }
expected results
job runs and archives stuff
actual results
job artifact archive fails as it tries to archive everything with invalid paths and the build result is set to SUCCESS (ie the error is silently swallowed which is wrong on so many levels)
see https://gist.github.com/jtnord/3c462cc6448c3faece4d9721e1daddc2 for the full log.
- duplicates
-
JENKINS-43617 Pipeline maven error: java.nio.file.InvalidPathException: Illegal char <:>
- Closed