Home Create a .NET Core CI Pipeline in Azure DevOps
Post
Cancel

Create a .NET Core CI Pipeline in Azure DevOps

A crucial feature of DevOps is to give the developer fast feedback if their code changes work. This can be done by automatically building code and running tests every time changes are checked-in. Today, I will show how to create a CI pipeline (continuous integration) for ASP .NET Core.

Create a .NET Core CI Pipeline in Azure DevOps

In my last post, Creating a Microservice with .NET Core 3.1, I created a new ASP .NET Core microservice. I will use the CI pipeline to build all projects and run all unit tests in the repository. You can find the code of the demo on GitHub.

In your Azure DevOps project, go to Pipelines and click Create Pipeline.

Create a new CI Pipeline

Create a new CI Pipeline

In the next window, select where you have your code stored. I select GitHub for this Demo. Usually, I have my code directly in Azure DevOps, then I would select Azure Repos Git. On the bottom, you can see “Use the classic editor”. This opens the old task-based editor. You shouldn’t use this anymore since the new standard is to use YML pipelines. This enables you to have your pipeline in your source control.

Select where your code is

Select where your code is

Authorize GitHub

Since the code is on GitHub, I have to authorize Azure Pipelines to access my repositories. If the code was on an Azure Repos, this step wouldn’t be necessary.

Authorize Azure Pipelines to access GitHub

Authorize Azure Pipelines to access GitHub

After authorizing Azure Pipelines for GitHub, all your repositories will be displayed. Search and select for the repository, you want to make the CI pipeline for. In my case, I select the .NETCoreMicroserviceCiCdAks repository.

Select your repository

Select your repository

On the next window, I have to approve to install Azure Pipelines in my GitHub repository. This allows Azure DevOps to access the repository and write to the code. This is necessary because the CI pipeline will be added to the source control. Again, this is not necessary when you have your code in Azure DevOps.

Select a Template

On the next step, select a template for your CI pipeline. Azure DevOps offers many templates like Docker, Kubernetes, PHP, or Node.js. Since my application is a .NET Core microservice, I select the ASP.NET Core template.

Select the ASP.NET Core template for your CI Pipeline

Select the ASP.NET Core template for your CI Pipeline

That’s it. The template created a simple CI pipeline and you can use it to build your .NET Core solution. In the next section, I will go into more detail about the functionality and add more steps.

The template created a simple CI Pipeline

The template created a simple CI Pipeline

Add more steps to the CI Pipeline

Before we add more steps to the CI pipeline, let’s have a look at what the template created.

Analyze the CI Pipeline from the Template

Above the .yml editor, you can see the path to the pipeline yml file in your source control. In my case it is WolfgangOfner/.NETCoreMicroserviceCiCdAks/dotnetcoreCIPipeline.yml. I renamed the file because I want to add more later.

Line 1 through 8 configures the pipeline. The trigger section defines that the pipeline is automatically triggered when something changes on the master branch. The pool section defines that the pipeline is executed on an ubuntu agent and the variables section lets you define variables for the pipeline. By default, only the buildConfiguration is set to Release.

On line 10 starts the first build step that executes a dotnet build in sets the configuration to Release by using the previously defined buildConfiguration variable. Additionally, a display name is set to identify the step easier in the logs.

The .yml editor can be a pain and overwhelming especially when you are starting with pipelines. Once you are used to it, it is way better than the old editor.

Add more steps to the CI Pipeline

I plan to add several new steps to restore NuGet packages, build the solution, run tests, and publish the solution. The publish step should only be run when the pipeline was triggered by the master branch.

I remove the build script and select the .NET Core task on the right side. I select restore as command and **/*.csproj as the path to the projects. This will restore all available projects. Then click Add, to add the task to your pipeline. Make sure that your cursor is at the beginning of the next line under steps.

 

Add a NuGet restore step to the CI Pipeline

Add a NuGet restore step to the CI Pipeline

I repeat the process of adding new .NET Core tasks but I use build to build all projects, test to run all projects that have Test at the end of the project name, and then publish the CustomerApi project. The whole pipeline looks as follows:

Click Save and Run and and the pipeline will be added to your source control and then executed.I created a new branch to test if everything is fine.

Running the CI Pipeline

Running the CI Pipeline

After the build is finished, you see a summary and that all 52 tests passed.

All unit tests passed

All unit tests passed

You don’t see anything under Code Coverage. I will cover this in a later post.

Run Tasks only when the Master Branch triggered the build

Currently, the publish task runs always, even if I don’t want to create a release. It would be more efficient to run this task only when the build was triggered by the master branch. To do that, I add a custom condition to the publish task. I want to run the publish only when the previous steps succeeded and when the branch name is master. I do this with the following code:

Save the pipeline and run it with any branch but the master branch. You will see that the publish task is skipped.

The Publish Task got skipped

The Publish Task got skipped

Conclusion

CI pipelines help developers to get fast feedback about their code changes. These pipelines can build code and run tests every time something changed. In my next post, I will show how to add code coverage to the results to get even more information about the code changes, and then I will show how to run your code with every pull request. Later, I will extend the pipeline to build and create Docker images and also to deploy them to Kubernetes.

You can find the code of the demo on GitHub.

This post is licensed under CC BY 4.0 by the author.

Create a .NET Core Visual Studio Template

Add Docker to an ASP .NET Core Microservice

Comments powered by Disqus.