如果使用Build Pipeline plugin(包括重复的作业)运行作业,Build Flow是否仍会正确显示作业序列?
这是我们构建流程的伪代码:
build("Package")
build("Deploy", destination: "http://test") // deploy to our test environment
build("IntegrationTests", target: "http://test") // run automated tests
build("Deploy", destination: "http://stage") // deploy to stage
destination
参数destination
参数中提供的网址运行一系列集成测试。即使部署作业重复,Build Pipeline plugin是否会将此管道显示为4个步骤?
Package => Deploy (test) => IntegrationTests => Deploy (stage)
答案 0 :(得分:0)
新解决方案which is being adopted with Jenkins 2.0是Pipeline plugin。此外,CloudBees开源了他们的Pipeline Stage View plugin,它为Pipeline插件提供了可视化。