Sunday 29 June 2014

11. Create a Release Build - Setup Virtual Environment for TFS 2013 - Using Virtualbox

In this step of ALM demo environment (Virtual Environment for TFS 2013), I am going to explain how to create a Release Build to build the website we have created in “Create a Simple Application and a CI Build”.
First step is to setup a drop location for our Virtual Environment for TFS 2013. For this we will use the build server we created in “Setup a Build Server”.

001

We have to give permission to TFS Build Service account (we have setup in “Setup a Build Server”), full control for the drop folder, in order to create build outputs

002

Let’s share this folder for read access for everyone.

003
004

Verify access from the development machine.

005
 006

Now we are going to clone the CI Build which was setup in “Create a Simple Application and a CI Build”.

007

Let’s rename the build definition.

008

Change the trigger of this build to manual.

009

Set the build drop location.

010

We are going to keep all successful builds (We need to keep these builds outputs and details as long as required and manually archive whenever necessary).

011

We are now done with the build definition. (We have changed nothing in the process tab. It is as same as the CI build setup in “Create a Simple Application and a CI Build”.)

012

Let’s queue a release build.

013
 014 

Build starts to run.

015

Once the build is done, we can see the output in the build drop location.

016
 017

We can find the site created in “Create a Simple Application and a CI Build”, published in to BuildDrop\_PublishedWebsites.
I will conclude the series Virtual Environment for TFS 2013 with this post. Do not worry, as promised when I started this series of posts, I will continue to explain VS 2013 Release Management as a new series using Virtual Environment for TFS 2013.

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.

Popular Posts