简体   繁体   中英

Whats the difference between a build pipeline and a release pipeline in Azure DevOps?

I have set up several multi-staged build pipelines in Azure DevOps by using .yaml files. I've read about the "Release Pipelines" available, and I'm wondering what the benefits of those are?

They seem to do the same, don't even offer.` YAML's support. So what's the main difference here? What can I do by using release pipelines, rather than usual build pipelines?

In Azure DevOps, before there was the multi stage yaml pipelines (now known as " Pipelines ", you usually used the Build Pipeline to build / create your software binaries (eg dotnet publish or ng build --prod) and stored these artifacts in the Azure DevOps drop location.

Then you normally had a Release Pipeline that gets triggered with these build artifacts (software binaries) and deploys them to one or many stages .

The reason to separate these two pipelines (build and release) is that you want to build a specific version of your software only once and then use the same binaries in each of your target environment (eg dev / test / production).

With the new pipeline, you usually use the first Stage to build your artifacts, and the next Stages to deploy it - similar as before but in one module.

If you have previously used the build & release pipeline, you will see the old build definition inside the new Pipeline module, and the old release definition in the old release module. However, they never brought YAML to the Release Pipelines because they know that they will replace them with the multi stage pipelines anyway.

Conclusion : If you use the new multi-stage " Pipeline " module, you shouldn't use the classic Release Pipelines anymore.

Yaml is still developing, and some features in release pipeline cannot be completely replaced, such as:

  • Queuing policies are not yet supported in YAML pipelines.
  • Task groups are not supported in YAML pipelines. etc...

Similarly, some features in the build pipeline have not been completely replaced, such as

  • Triggering on tags is not currently supported for Bitbucket Cloud repos.
  • YAML PR triggers are only supported in GitHub and Bitbucket Cloud. etc...

So, with the development of yaml, its features will be more and more comprehensive, but now some features of release pipeline cannot be completely replaced, and release pipeline still has value.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM