Skip to content

Commit c604b46

Browse files
authored
Add unique group_label to build variables in getEBCNode function (#6487)
This avoid issue with merging similar run of create node pipeline into one and not creating a node per each test list Signed-off-by: mahdi@ibm.com Signed-off-by: mahdi@ibm.com
1 parent 386219c commit c604b46

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

buildenv/jenkins/openjdk_tests

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,9 +739,10 @@ def getEBCNode() {
739739
propagate: false,
740740
wait: true,
741741
parameters: [
742-
string(name: 'platform', value: params.PLATFORM),
743-
string(name: 'nodeType', value: 'testmachine'),
742+
string(name: 'PLATFORM', value: params.PLATFORM),
743+
string(name: 'NODE_TYPE', value: 'testmachine'),
744744
string(name: 'TIME_LIMIT', value: expectedNodeLifespan.toString()),
745+
string(name: 'GROUP_LABEL', value: UID.randomUUID().toString()),
745746
booleanParam(name: 'WAIT', value: wait),
746747
]
747748
return result.buildVariables.group_label

0 commit comments

Comments
 (0)