Getting started with .NET and Bamboo

This page describes how your development team can start using the Bamboo continuous integration server to get rapid feedback on your .NET project.

(info) You may want to read Understanding the Bamboo CI Server first.

We assume that you already have:

  • Bamboo installed and running. See Installing and upgrading for details. You'll want user accounts in Bamboo for each member of your team.

  • Source code under version control. Each team member will have access to the repository.
  • Tests, as part of the source code for the project.
  • A command that builds the code and executes the tests.

The continuous integration workflow we want is:

  1. A developer commits code.
  2. Bamboo builds the project:
    1. Connects to the repository and checks out the source code.
    2. Compiles the code.
    3. Runs the unit and integration tests.
  3. Bamboo provides feedback on the test results.

How do we achieve this with Bamboo?

Well, we'll create a new Bamboo plan that knows how to check out and build our source code, and then report on our test results.

On this page:

Create a Bamboo plan

A Bamboo plan is where you define the details of your continuous integration workflow.

A plan allows us to specify a source code repository, when Bamboo gets triggered to run the build, and how Bamboo should provide feedback on the test results.

1. Plan details

Select Create in the menu bar, and then Create plan.

Every plan belongs to a project. We don't have a project yet, so select Project > New Project, and enter details for both the project and plan.

See Configuring plans for details.

New project and plan details section in Bamboo

2. Choose a source repository

Bamboo needs to know where the source code repository is located, and needs access to the repo so that it can check out the code when it runs a build.

Select the repository host, and provide access details such as username and password.

See Linking to source code repositories for details.

Git repository details section in Bamboo

3. Configure tasks

Each plan needs to have one or more tasks specified. Tasks do the real work of the plan.

The source code checkout task

A newly created plan has a default Source Code Checkout task that gets the source code from the source repository specified earlier.

See Checking out code for details.

The builder task

We also want to compile the code. We'll add a builder task to the Bamboo plan to do that. We assume that your project already has a build process set up that Bamboo can call upon.

Select Add task, then Builder and choose the task that matches the build tool for your project. Expand one of the following sections to see configuration details specific to that builder task:

NAnt...

NAnt configuration section in Bamboo

See http://nant.sourceforge.net/ for information about NAnt.

Visual Studio...

Visual Studio configuration section in Bamboo

See http://www.microsoft.com/visualstudio for information about Visual Studio.

Note that a build tool needs to be installed on the Bamboo server machine before you can use the Bamboo task.

Getting the test results

Now we want to run the unit and integration tests, and display the results from those. You need to set up one of the MSTest, NUnit or MBUnit tasks so Bamboo can get and display the test results. You can specify a custom results location if your project directory doesn't use the conventional structure.

See Configuring a test task for details.

5. Go!

Enable the plan, and click Create.

You should see the plan run. The 'Plan summary' tab will report whether the build succeeded or not.

Tests in the appropriate directory in the source code repository will be run automatically as part of the build, and the test results will be displayed in Bamboo.

Now, whenever you commit a change to the repository, Bamboo will build your source code and report on your test results.

Get feedback

Bamboo displays a summary of the results of the build on the dashboard.

You can get further information about the build in the following ways:

  • Build results for one or more plans can be displayed on a wallboard.
  • You can get notifications about build results sent to you by email, IM and RSS feed.
  • You can get build statistics about plans, and about developers contributing code to the build.
  • You can drill down into the results to see the code changes that triggered the build, and the tests that were run for that build.

See Getting feedback for details.

Last modified on Aug 25, 2021

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.