[Bamboo Knowledge Base]
This page describes how your development team can start using the Bamboo continuous integration server to get rapid feedback on your .NET project.
You may want to read Understanding the Bamboo CI Server first.
We assume that you already have:
The continuous integration workflow we want is:
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:
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.
Click Create Plan in the menu bar, and then Create a New Plan.
Every plan belongs to a project. We don't have a project yet, so choose Project > New Project, and enter details for both the project and plan.
See Configuring plans for details.
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.
Choose the repository type from Source Repository, and provide access details such as username and password.
See Linking to source code repositories for details.
We can choose how Bamboo gets triggered to run the plan build.
We want Bamboo to build the project whenever code is checked into the repository.
Choose Trigger type > Repository triggers the build..., and optionally, specify an IP address for the repository server.
See Triggering builds for details.
Each plan needs to have one or more tasks specified. Tasks do the real work of the plan.
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.
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.
Click 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:
Note that a build tool needs to be installed on the Bamboo server machine before you can use the Bamboo task.
See Configuring a builder task for details.
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.
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.
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:
See Getting feedback for details.