Skip to content

Commit b31330a

Browse files
nikita-dubrovskiijlebon
authored andcommitted
utils: convert collected as a Set artifacts into List
This fixes introduced by previous commit issue: ``` hudson.remoting.ProxyException: groovy.lang.MissingMethodException: No signature of method: java.util.LinkedHashSet.add() is applicable for argument types: (java.lang.Integer, java.lang.String) values: [0, metal] ```
1 parent 0802b0c commit b31330a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def get_artifacts_to_build(pipecfg, stream, basearch) {
429429
// and QEMU image are always built and not skippable artifacts.
430430
artifacts = artifacts.intersect(["extensions-container"])
431431
}
432-
return artifacts
432+
return artifacts.toList()
433433
}
434434

435435
// Build all the artifacts requested from the pipeline config for this arch.

0 commit comments

Comments
 (0)