git clone https://github.com/YOUR-GITHUB-ACCOUNT-NAME/simple-dotnet-web-app
This tutorial shows you how to build a CI/CD pipeline in Jenkins to build, test, and deliver a simple .NET web app.
If you are unfamiliar with publishing a .NET web app or you are not sure how to prepare a web app using Jenkins, this tutorial is for you.
This tutorial provides a ready-to-use web app, simple .NET API, and an integration test to ensure functionality. The test results are generated in a Cobertura XML report.
Duration: This tutorial takes 30 - 40 minutes to complete, assuming you meet the below prerequisites.
The exact duration will depend on the speed of your machine and whether you’ve already installed docker
and docker compose
.
You can stop this tutorial at any time and continue from where you left off.
For this tutorial, you will require:
A macOS, Linux, Windows, or Chromebook (with Linux) machine with:
2 GB of RAM
2 GB of drive space for Jenkins
The following software installed:
Git, and optionally GitHub Desktop.
Get the "Weather Forecast" .NET Web API from GitHub, by forking the sample repository of the application’s source code into your own GitHub account, and then cloning this fork locally.
Make sure you are signed in to your GitHub account. If you don’t yet have a GitHub account, sign up for free at GitHub.
Fork the simple-dotnet-web-app
on GitHub into your local GitHub account.
If you need help, refer to the GitHub documentation on forking a repo for more information.
Clone the forked simple-dotnet-web-app
repository from GitHub to your machine.
To begin this process, do either of the following, where <your-username>
is the name of your user account on your operating system:
If you have the GitHub Desktop app installed on your machine:
In GitHub, select Code in your forked repository, then select Open with GitHub Desktop.
In GitHub Desktop, before selecting Clone in Clone a Repository, ensure Local Path for your operating system, as follows:
macOS is /Users/<your-username>/Documents/GitHub/simple-dotnet-web-app
Linux is /home/<your-username>/GitHub/simple-dotnet-web-app
Windows is C:\Users\<your-username>\Documents\GitHub\simple-dotnet-web-app
Alternatively:
Open a terminal/command line prompt and cd
to the appropriate directory, according to your operating system:
macOS - /Users/<your-username>/Documents/GitHub/
Linux - /home/<your-username>/GitHub/
Windows - C:\Users\<your-username>\Documents\GitHub\
(Use a Git bash command line window, not the usual Microsoft command prompt)
Run the following command to clone your forked repo, replacing YOUR-GITHUB-ACCOUNT-NAME
with the name of your GitHub account:
git clone https://github.com/YOUR-GITHUB-ACCOUNT-NAME/simple-dotnet-web-app
Obtain the latest Jenkins deployment, customized for this tutorial, by cloning the quickstart-tutorials repository.
After cloning, navigate to the quickstart-tutorials
directory, and execute the command
docker compose --profile dotnet up -d
to run the example.
Once the containers are running successfully (you can verify this with docker compose ps
), the controller can be accessed at http://localhost:8080.
If you are unable to install docker compose
on your machine for any reason, you can still run the example in the cloud for free thanks to GitPod. GitPod is free for 50 hours per month.
You need to link it to your GitHub account so you can run the example in the cloud.
Click on that link to open a new browser tab with a GitPod workspace where you’ll be able to start the Jenkins controller, and run the rest of the tutorial.
Now, log in using the admin
username and admin
password.
In Jenkins, select New Item under Dashboard > at the top left.
Enter your new Pipeline project name, such as dotnet-tutorial
, in Enter an item name.
Scroll down if necessary and select Pipeline, then select OK at the end of the page.
(Optional) Enter a Pipeline Description.
Select Pipeline on the left pane.
Select Definition, and then choose the Pipeline script from SCM option. This option instructs Jenkins to obtain your Pipeline from the source control management (SCM), which is your forked Git repository.
Choose Git from the options in SCM.
Enter the URL of your repository in Repositories/Repository URL. This URL can be found when selecting the green Code button in the main page of your GitHub repo.
Under Branches to build, enter /main
in the *Branch Specifier field.
Select Save at the end of the page.
You’re now ready to create a Jenkinsfile
to check into your locally cloned Git repository.
You are now ready to create a Pipeline to automate the building of your .NET web app.
Your Pipeline is created as a Jenkinsfile
, which is committed to your locally cloned Git repository (simple-dotnet-web-app
).
This is the foundation of "Pipeline-as-Code", which treats the continuous delivery pipeline as a part of the application, to be versioned and reviewed like any other code. Read more about Pipeline and what a Jenkinsfile is in the Pipeline and Using a Jenkinsfile sections of the User Handbook.
First, create an initial Pipeline to build your .NET web app. The pipeline utilizes a customized agent that is shipped with .NET SDK. Ensure you add a "Build" stage to the Pipeline that begins orchestrating this whole process.
Using your preferred text editor or IDE, create and save a new text file named Jenkinsfile
at the root of your local simple-dotnet-web-app
Git repository.
Copy the following Declarative Pipeline code and paste it into your newly created Jenkinsfile
:
pipeline {
agent any
stages {
stage('Build') { (1)
steps {
sh 'dotnet restore' (2)
sh 'dotnet build --no-restore' (3)
}
}
}
}
Save your edited Jenkinsfile
and commit it to your local simple-dotnet-web-app
Git repository.
Within the simple-dotnet-web-app
directory, run the commands:
git add .
git commit -m "Add initial Jenkinsfile"
git push
to push your changes to your forked repository on GitHub, so it can be picked up by Jenkins.
Now select Build Now on the left pane of your Pipeline project in Jenkins.
After making a clone of your local simple-dotnet-web-app
Git repository itself, Jenkins:
Initially queues the project to be run on the agent.
Runs the Build
stage defined in the Jenkinsfile
on the agent.
When it’s a success, the green check will be shown and now you are ready to explore your initial pipeline.
You can now select #1 in the Stage View or Builds widget to see the details of the build. The status page displays how much time the build took waiting in the queue and how much time it took to run.
In the left navigation pane, you can select Pipeline Overview to see the stages of the Pipeline.
If you select the Build stage, you will see more information about the stage, including the output of the
dotnet build
command if you select the green dotnet build
section.
You can now select dotnet-tutorial (if that’s the name you chose for your pipeline) from the breadcrumb navigation in the top-left to return to your pipeline main page.
Go back to your text editor/IDE and ensure your Jenkinsfile
is open.
Copy and paste the following Declarative Pipeline syntax immediately under the Build
stage of your Jenkinsfile
:
stage('Test') {
steps {
sh 'dotnet test --no-build --no-restore --collect "XPlat Code Coverage"'
}
post {
always {
recordCoverage(tools: [[parser: 'COBERTURA', pattern: '**/*.xml']], sourceDirectories: [[path: 'SimpleWebApi.Test/TestResults']])
}
}
}
so that you end up with:
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'dotnet restore'
sh 'dotnet build --no-restore'
}
}
stage('Test') { (1)
steps {
sh 'dotnet test --no-build --no-restore --collect "XPlat Code Coverage"' (2)
}
post {
always {
recordCoverage(tools: [[parser: 'COBERTURA', pattern: '**/*.xml']], sourceDirectories: [[path: 'SimpleWebApi.Test/TestResults']]) (3)
}
}
}
}
}
1 | Defines a stage (directive) called Test that appears on the Jenkins UI. |
2 | This sh step executes the dotnet test command to run the unit/integration test on your .NET web app.
This command also generates a Cobertura XML report, which is saved to the SimpleWebApi.Test/TestResults directory within the /home/jenkins/agent/workspace/dotnet-tutorial directory in the Jenkins agent container. |
3 | This recordCoverage step (provided by the Coverage Plugin), archives the Cobertura XML report generated by the dotnet test command above, and displays the results through the Jenkins interface.
The post section’s always condition that contains this recordCoverage step ensures that the step is always executed at the completion of the Test stage, regardless of the stage’s outcome. |
Save your edited Jenkinsfile
and commit it to your local simple-dotnet-web-app
Git repository.
Within the simple-dotnet-web-app
directory, run the commands:
git stage .
git commit -m "Add 'Test' stage"
git push
to push your changes to your forked repository on GitHub, so it can be picked up by Jenkins.
In Jenkins, go back to Dashboard if necessary, then dotnet-tutorial and launch another build using Build Now.
After a while, a new column titled Test appears in the Stage View.
You can select #2 (or the number representing your last build) in the Stage View or Builds widget to see the details of the build.
You can now select Pipeline Overview to see the stages of the Pipeline.
The newly added "Test" stage is visible here. Selecting the "Test" stage checkmark displays the stage output.
Additionally, you can check the coverage result by navigating back to the job status page and selecting Coverage Report.
Go back to your text editor/IDE and ensure your Jenkinsfile
is open.
Copy and paste the following Declarative Pipeline syntax immediately under the Test
stage of your Jenkinsfile
:
stage('Deliver') {
steps {
sh 'dotnet publish SimpleWebApi --no-restore -o published'
}
post {
success {
archiveArtifacts 'published/*.*'
}
}
}
Add a skipStagesAfterUnstable
option, resulting in:
pipeline {
agent any
options {
skipStagesAfterUnstable()
}
stages {
stage('Build') {
steps {
sh 'dotnet restore'
sh 'dotnet build --no-restore'
}
}
stage('Test') {
steps {
sh 'dotnet test --no-build --no-restore --collect "XPlat Code Coverage"'
}
post {
always {
recordCoverage(tools: [[parser: 'COBERTURA', pattern: '**/*.xml']], sourceDirectories: [[path: 'SimpleWebApi.Test/TestResults']])
}
}
}
stage('Deliver') { (1)
steps {
sh 'dotnet publish SimpleWebApi --no-restore -o published' (2)
}
post {
success {
archiveArtifacts 'published/*.*' (3)
}
}
}
}
}
1 | Defines a new stage called Deliver that appears on the Jenkins UI. |
2 | This sh step executes the dotnet publish command to publish your .NET web app into executable and store it into the published directory. |
3 | This archiveArtifacts step archives the published directory as a build artifact. |
Save your updated Jenkinsfile
and commit it to your local simple-dotnet-web-app
Git repository.
git stage .
git commit -m "Add 'Deliver' stage"
git push
to push your changes to your forked repository on GitHub, so it can be picked up by Jenkins.
Return to the Dashboard and select dotnet-tutorial.
Select Build Now on the left. After a while, a new column titled Deliver will appear in the Stage View.
You can select #3 (or the number representing your last build) in the Stage View or Builds widget to see the details of the build.
+
You can now select Pipeline Overview to see the stages of the Pipeline.
Once you are on the Pipeline Overview page, you can select the green checkmark under Deliver green checkmark to see the stage output.
Selecting the dotnet publish
section expands to display the execution results of your .NET web app at the end of the build.
. You can now select dotnet-tutorial (if that’s the name you chose for your pipeline) from the breadcrumb navigation in the top-left to return to your pipeline main page.
Once you are on the Status page, you can select Stages from the left navigation pane to list your previous Pipeline runs in reverse chronological order.
After your job finishes, you can review the delivered artifacts by navigating to the Status page. After selecting dotnet-tutorial from the breadcrumb navigation, the status page displays artifacts under Last Successful Artifacts.
Well done! You’ve just used Jenkins to build a simple .NET web app!
The "Build", "Test" and "Deliver" stages you created above are the basis for building more complex .NET web apps in Jenkins, as well as .NET applications that integrate with other technology stacks.
Because Jenkins is extremely extensible, it can be modified and configured to handle practically any aspect of build orchestration and automation.
To learn more about what Jenkins can do, check out:
The Tutorials overview page for other introductory tutorials.
The User Handbook for more detailed information about using Jenkins, such as Pipelines (in particular Pipeline syntax) and the Blue Ocean interface.
The Jenkins blog for the latest events, other tutorials and updates.
After completing the tutorial, it’s important to clean up your environment to prevent interference with other tutorials you might try later.
To stop the containers and remove associated volumes:
docker compose --profile dotnet down -v --remove-orphans
This command ensures a clean slate for your next project.
The |
Please submit your feedback about this page through this quick form.
Alternatively, if you don't wish to complete the quick form, you can simply indicate if you found this page helpful?
See existing feedback here.