2

有没有办法更改 Jenkins 队列中的作业名称?我问的原因是我们有一个名为“deploy”的参数作业,它被多个上游作业调用。我们的构建队列有十几个这样的“部署”作业,但每个作业根据其参数都是独一无二的。

我们希望在队列中看到类似这样的内容: deploy:foo-project deploy:bar-project ... 而不仅仅是: deploy deploy ...

这可能吗?

4

1 回答 1

2

If you hover over an entry in the queue, you'll see the parameters for the particular build.

You could also look at using the Build Name Setter plugin; the build parameters will be available as environment variables that you can use in the build name string, e.g. deploy:${PROJECT_NAME}

于 2013-11-01T15:52:59.657 回答