[Jenkins] Why custom axis doesn't work with slaves

I created a multi-configuration project that runs multiple automation tests. I have a custom axis that runs on one node and I want to parallelize the process.

I have the following configuration:

Configuration

My problem is that both jobs will run on the same node. "EU_Washroom" will start first and then "EU_Linen".

Jobs

"EU_Linen" does not work on the 5th (JenkinsQFT5) node, but works on the 4th, not counting the combination filter ( QF_SCRIPT_NAME == "EU_Linen" && slave=="Jenkins-QFT5"

). The name node is also appended to the end of the job name.

Is this a bug or am I doing something wrong? I am using Jennkins version 1.598

EDIT: I removed the combined filter and all 4 combinations were done on the same node. Both nodes are specified using: "Use this node as much as possible"

EDIT # 2: I deleted the user defined axis and only allowed the driven axis and it acts the same. Work console that should run on Jenkins - QFT5 :Building remotely on Jenkins-QFT4 in workspace c:\JenkinsSlave\lib\workspace\8.03.08-QF-tests\TestParalelFor8\Jenkins-QFT5

+3


source to share


2 answers


This was a bug in Jenkins v1.598



0


source


Jenkins ver. 2.5 this works well.



+1


source







All Articles