Sunday 23 November 2014

How to Trigger a Release in VS Release Management from TFS Build

To enable triggering a release in Visual Studio Release Management from TFS build requires few configuration steps to be performed.
First step is to allow triggering a release in the Release Template. This can be done in release template properties.
001
Select “Can Trigger a Release from a Build?” option.
002
Next step is to change the TFS build template to Special Template capable of triggering a release. If there is customized build template being used currently, it is possible to change it to support triggering a release. How to do that explained in below link.
http://blogs.msdn.com/b/visualstudioalm/archive/2013/12/09/how-to-modify-the-build-process-template-to-use-the-option-trigger-release-from-build.aspx
003
004
If default build template is used as shown above, change it to template available with Release Management Client. This can be found at below shown location of a Release management Client installed machine.
005
Add ReleaseTfvcTemplate.12 to build process templates and select it as the build template in the build definition. If TFS 2012 ReleaseDefaultTemplate.11.1 should be used. If Git is used as source control repository ReleaseGitTemplate is available.
006
007
008
This template has a category for Release.
009
Set Release Build to true.
010
To demonstrate the release with TFS build, below simple ASP.Net web application is altered with a simple change and tested in Development environment.
012
013
The depsvr which is configured to deployed using VS Release Management still has old version and development (localhost) shows the change,
014
Check in the change.
015
CI build (Build each check in) is successful.
016
Next step is to trigger a build with output and initiate a release via that build.
017
018

Wait for release to be triggered with the TFS build.
019

New release is not triggered and Build failed with “Build service account needs to be a system user in Release Management Server”.
 020
021
Add the TFS Build Service account as a service account in Release Management.
022
023
024 .
Retry Build.
025
Second attempt failed with same error.
027
028
The Q&A in below link gives a hint.
http://stackoverflow.com/questions/20901507/error-the-account-running-the-tfs-build-service-tfsbuildservices-needs-to
Hint is the build server needs to be installed with Release Management Client and configured to access Release Management Server.
030
031
032
033
Next attempt of the build successfully triggers the release in Release Management Server.
034
035
Acceptance Deployment step should be set to automated in release path of Release triggered by a TFS Build.
036
Build succeeds and Release succeeds.
037
038
DepSvr is updated with the change in the Demo web application.
039

Sunday 16 November 2014

Demo Release Template for VS 2013 Release Management – Part 2

In this second part of Demo Release Template in Visual Studio Release Management, I will explain how to define a simple deployment sequence to create an IIS application pool and a website.

We can add a Server, or Tag to the deployment sequence. Using a Tag is better since it will allow copy and pasting the template to different stages of the pipeline and even if the servers (will be different servers always in real life) are different in each stage, the tag locates the server related to the correct environment.

001

Let’s add WebSvr (Tags defined when we setup the Servers & Environments) to the deployment sequence in our DevInt stage.

002

The first action we are going to add to the deployment sequence of the web server is create the app pool action. More details of default available release actions can be found in MSDN - Release actions to deploy an app for Release Management.

003

Let’s set parameters to create the application pool, .Net framework and the app pool name.

004

005

Next action we are adding is create website.

006

Let’s set App Pool, Site Name, Port etc. for website.

007

We need to create a deployment component to copy the TFS build output to our web site folder (Build definition for the template was defined in Part1)

008

Click New to create new component.

009

Give a name to the component and select Builds with application. There are different options you can select as you can see below.

010

Release Management server will locate the build drop of the referred TFS build in template. we have to specify our website content location. If it is in the root of the build drop we can specify \ character.

011

012

In the Deployment tab of the component select XCopy Deployer and click Save & Close.

012.1 

Select the new component created and click Link.

013

Now the component is available in our release template.

014

Add the component to the deployment sequence and set the installation path parameter to the Web Site physical file folder.

015

 016

Now we can copy the WebSvr sequence to the next stage (QA).

017

018

019

 

Change the parameters of actions for the QA stage.

020

 021

022

We can do same for the Prod.

023

024

025

Save and Close the release template.

Next go to Release tab of the Release Management Client and click New.

026

Select the Target Stage as Prod so that our release will deploy through the pipeline from DevInt—>QA—>Prod.

027

Click on Latest to select the latest successful build.

028

Click on Create in Draft.

029

We can compare and verify configuration variables before we start the release.

030

 031

 033

Start the release and since all stages set up to deploy automatically, release will deploy from DevInt—>QA—>Prod.

034

 035

 036

We can see the three application pools getting created (in same server since we use a single server for  all the stages in this demo).

037

Three websites created as well.

038

XCopy Deployer component has copied web site files to the Web Site physical folders.

039

The web sites are up and running.

042

With this Visual Studio Release Management series of posts I have explained how to setup Release Management Server, Client etc., configure and do a simple deployment. VS Release Management has lot more features and could be used to do lot more complex deployments. It has advanced security management options to setup groups, control permissions for each stage, template etc.

Popular Posts