Search⌘ K
AI Features

Pipelines

Explore how to create and manage Azure Pipelines in the context of CI/CD. Understand the shift from UI-based pipelines to YAML-coded pipelines, allowing better collaboration, reduced errors, and full automation. Gain practical insights to configure source control, define tasks, and build a complete pipeline workflow in Azure DevOps.

We'll cover the following...

Pipelines in Azure

Now that you know about CI/CD, let’s dive into what pipelines are in Azure DevOps and how they can be used in a CI/CD context. You’ll get a full, end-to-end example of building an Azure pipeline in the chapter project, but it’s important to first get a brief overview of creating a simple pipeline.

At the time of writing this, Microsoft is in the process of moving from traditional pipelines, which had a CI (build) and a CD (release) process, into one pipeline for both. We will cover YAML-based pipelines in this chapter, which is the one pipeline for both because that’s the direction that Microsoft is heading in. ...