Thursday 26 June 2014

10. Create a Simple Application and a CI Build - Setup Virtual Environment for TFS 2013 - Using Virtualbox

Now we are ready with TFS, Build Server and Development machine in our ALM demo environment (Virtual Environment for TFS 2013), and it is good time to create simple application and a CI build for it. If you wonder what is a CI Build and why we need it refer my post “Why CI build”.
Let’s create very simple Asp.Net Web Forms application first. Here I do nothing but use the template to create a simple app.

First a VS Solution.

001

Next add a ASP.Net Web Forms Application.

002
 003

Now we have a basic Asp.Net Forms Application up and running.

004
 005

Let’s check in this to TFS.

006
 007 

Now we have a simple application checked in to TFS.

008

Our next goal is to set up a CI Build, which builds for each changeset we check in. A new build definition can be created by navigating to Builds from Team Explorer Home, and clicking on New Build Definition.

009
 010

Build name specified as “DemoWS.CI”.

011

In the trigger we have to set as Continuous Integration to make the build trigger for every check in.

012

Source settings we have to specify the correct source mapping.

013

014

014.1

We do not want to create any output from this CI build. We are just making sure our code is in a valid state and compile without errors.

015

In the Process tab of build definition we specify solution to build and we are setting build agent tags to correctly locate the build agent.

016

We are setting at least a build agent with VS2013 available should be located when the build is triggered.
 017

 018
 019

Configuration to build we are selecting in this demo is Release and Any CPU.

020

020.1

We do not want to keep all successful builds in a CI build, since this is just a verification of latest source state of success compilation. 

021

Once we save our build definition is ready.

022

We can queue a test build by right clicking on the build definition and click on Queue New Build.

023

 024

Build is just started

025

Double click on this will open detail view.

026

Our CI build is done. (Ignore the time taken to build, my build server is having only 512MB RAM and TFS server only 2 GB of RAM, it will be much faster in a virtual/physical environment with more resources :))

027

Now let’s do a code change and check in to see if a new build triggers. Assume I have a bug to fix :)

032

So let’s do the fix.

028

We do the change

033

Then check in while resolving/closing the task.

034

035

Check in has triggered a build and it is done.

039

We can see our work items (task and Bug) associated correctly to the build.

036 

The task is set to closed automatically.

037

We can resolve the Bug now.

038

Next I will explain how to create a release build with a build out put.

No comments:

Popular Posts