Re: bat command failing with 'cmd' is not recognized as an internal or external command

2016-10-06 Thread Tom Gwozdz
And of course after struggling with it for a long time, I find the problem just after I ask for help. It turns out setting env.PATH affects all nodes, not just the local node, which was then affecting the PATH on the windows build. I changed those to withEnv calls instead and all is well. Tha

bat command failing with 'cmd' is not recognized as an internal or external command

2016-10-06 Thread Tom Gwozdz
I have a pipeline script (pasted below). When I run it as-is, the windows branch "bat" step fails with the error "'cmd' is not recognized as an internal or external command". But if I comment out the macos and emscripten branches, the windows branch works just fine. Am I doing something wrong?

Re: using multibranch artifacts in subsequent pipeline

2016-10-04 Thread Tom Gwozdz
My specific use case for this is this. Say I have a Game Engine project. I then create a Game project that uses the Game Engine project. On the Game project, I then create a branch and do a bunch of work on a new feature. My multi-branch pipeline creates a pipeline for this and starts build

using multibranch artifacts in subsequent pipeline

2016-10-03 Thread Tom Gwozdz
I have a multi-branch pipeline project set up to build some libraries. I want to use the generated artifacts from this pipeline in a subsequent project which is also a multi-branch pipeline. However, in the second project, I would like to copy the artifacts from the first project where the br