Jenkins Pipeline Multiconfiguration Project

前端 未结 2 1248
余生分开走
余生分开走 2020-12-17 21:50

Original situation:

I have a job in Jenkins that is running an ant script. I easily managed to test this ant script on more then one software version using a \"Mul

2条回答
  •  北荒
    北荒 (楼主)
    2020-12-17 22:21

    Points 1 and 3 are not completely clear to me, but I suspect you just want to use “scripted” rather than “Declarative” Pipeline syntax, in which case you can make your job do whatever you like—anything permitted by matrix project axes and axis filters and much more, including parallel execution. Declarative syntax trades off syntactic simplicity (and friendliness to “round-trip” editing tools and “linters”) for flexibility.

    Point 2 is about visualization of the result, rather than execution per se. While this is a complex topic, the usual concrete request which is not already supported by existing visualizations like Blue Ocean is to be able to see test results distinguished by axis combination. This is tracked by JENKINS-27395 and some related issues, with design in progress.

提交回复
热议问题