From the course: Azure DevOps: Continuous Delivery with YAML Pipelines

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Continuous integration pipelines

Continuous integration pipelines - Azure Tutorial

From the course: Azure DevOps: Continuous Delivery with YAML Pipelines

Start my 1-month free trial

Continuous integration pipelines

- [Instructor] For this first one we want to show a classic pipeline. I've got my YAML project open. If I click on the Pipelines it'll take me out to where I can take a look at a classic pipeline. Click on Edit and I can see all of the components that make this pipeline work. You'll see, first of all, that it is a build pipeline. It is pulling its sources from GitHub where I've got a project called My YAML. Inside of here I've got an agent that runs a series of tasks. These include a NuGet restore, a build, a test, et cetera. Each of these tasks has a number of properties associated with it. For instance, in a build solution it has the solution path, it has some arguments for how MSBuild runs, and I can customize and set these as I wish to. The trigger on this is set up to run from continuous integration against my GitHub account. In this case I've got enabled continuous integration turned on which will then trigger this…

Contents