I configured the job in Jenkins using a project option with multiple configurations. I can successfully compile user-defined axis targets, but I find that Jenkins first starts checking in the workspace folder (which is not actually used) and checks it in the workspace / target folder in which the assembly is actually being performed for this purpose.
So, when the assembly starts, Jenkins first checks the given URL for the workspace, and then for the workspace / target / etc.
Actual steps:
1. checkout to workspace 2. checkout to workspace/target/<target1> 3. checkout to workspace/target/<target2>
Expected Steps:
1. checkout to workspace/target/<target1> 2. checkout to workspace/target/<target2>
How can I stop Jenkins from doing the first check and doing only the appropriate ones?
Or even better, my builds allow you to do all this at one checkout. Can I do it?
source share