Hi
We have two jenkins jobs:
JOB_1 - a freestyle job which simply triggers a parametrized build on Jenkins JOB_2, it sends the following parameter to Jenkins JOB_2: SERVERS=
server1.me.comJOB_2 - a Multi-configuration project with a Dynamic Axis defined as follows: Axis Name: SERVER, Variable Name: SERVERS, this job simply runs 'set' command to see environmental variables.
As soon as JOB_1 is executed it sends SERVERS parameter and triggers a build on JOB_2, however the issue is JOB_2 is trying to do a build (run 'set' command) on
server5000.me.com instead of
server1.me.com, why is that?
server5000.me.com is a server and has Jenkins client running on it however it shouldn't be used by the above jobs. I would expect that JOB_2 in the scenario above tries to do a build on
server1.me.comConfiguration
Dynamic Axis plugin version 1.0.3
Jenkins ver. 1.585
Any help is greatly appreciated
Thank you