Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jenkins matrix configuration artifacts

I'm currently experimenting with a matrixed projected in jenkins. It is working well but I'm curious how to get the artifacts to show up on the main page under a Last Successful Artifacts link. Currently it looks like the artifacts are built in the target directory for each axis configuration.

Is there a way to aggregate the artifacts to a single spot through jenkins?

like image 421
Jeff Storey Avatar asked Apr 23 '12 20:04

Jeff Storey


1 Answers

Collector collects Matrix artifacts but is in fact a simple "FreeStyle" job. The build view shows all the artifacts, and after that is a hint as to how it's configured. Note the "flatten" and "optional" features allow platforms to be missing from a set, but the "delete workspace" first ensures you don't carry over stale artifacts.

Build view: collect_build_view

Config view:

collect_config_view

like image 195
reechard Avatar answered Sep 28 '22 05:09

reechard