Continuous deployment with Visual Studio Team Services

29 May 2017 by Ryan Ververs-Bijkerk

Category:

    Development

Continuous deployment with Visual Studio Team Services

Table of Content

  • What is the benefit of continuous deployment?
  • How to start with continuous deployment?
  • Dynamic page with the latest build
  • Conclusion

In many organizations releasing a new version of a product is a hassle. Many actions and people are required to get this new version online. By using the continuous deployment techniques you can automate this entire flow. In this blog post I will show how I organize the continuous deployment of my tools.

What is the benefit of continuous deployment?

When creating software, feedback is extremely important to improve. In order to get feedback from customers, you need to make sure your tool or product is available. With an Agile development strategy, it’s common to have short increments called sprints. At the end of each sprint, you should have a potentially shippable product. The goal is to deliver the added value quickly and gather customer feedback.

How to start with continuous deployment?

It is important to understand the flow and the requirements to deploy your software. Make sure you fully understand what needs to be done. As described in the introduction I’ll be using my tool as an example. Now, this may be a simple example but I hope it provides a generic idea how to approach this strategy.

Releasing a new version of my tool takes a few steps. When I have a successful build in Visual Studio Team Services. I download the artifacts, extract the zip and remove the unused debug files. Once the unused files are removed I zip the tool again and upload it to my blog. On the tool page, I update MD5 hash and the link to the latest version.

To automate this process I have enabled “Continuous Integration” on my release build which is linked to my master branch. Once I have finished my work I can merge my changes into the master branch and this will trigger the build automatically.

As mentioned I need to make sure I only provide the required files for download. Within my release build, I have a copy task with a contents filter. In this example, I only need the executable and required text file. Now the artifact provided by the build includes the correct files.

Currently, I have two release definitions. One for the release build which I call the stable release and another for my develop build which is the development release. In both definitions, I made sure the triggers are enabled based on the correct build.

In the release definitions, I have two actions. First I’m creating a zip file based on the artifact from the specific build. Once the zip is created I can upload the file to my blog using FTP. In both releases, the zip is uploaded to the directory based on the branch name and specific version number. This way I have a clear distinction between a stable and development release.

This is a simple example but the possibilities are endless with all the tooling and options in Visual Studio Team Services.

Dynamic page with the latest build

Once the tool is uploaded to the FTP I need to update the download links to the latest release. I don’t want to do this every time so therefore I have added some PHP code on my page to get the latest stable and development build. Because my blog is hosted in WordPress I’m using the insert php plugin.

[insert_php]
$path = getcwd();
$baseUrl = $_SERVER['SERVER_NAME'];

$developDir = "$path\\downloads\\ppd\\develop\\";
$masterDir = "$path\\downloads\\ppd\\master\\";

$developFiles = array_diff(scandir($developDir, SCANDIR_SORT_DESCENDING), array('..', '.'));
$developLast = $developFiles[0];
$developLink = "$baseUrl/downloads/ppd/develop/$developLast/PPD.zip";
$developMd5 = md5("$developDir\\$developLast\\PPD.zip");

$masterFiles = array_diff(scandir($masterDir, SCANDIR_SORT_DESCENDING), array('..', '.'));
$masterLast = $masterFiles[0];
$masterLink = "$baseUrl/downloads/ppd/master/$masterLast/PPD.zip";
$masterMd5 = md5("$masterDir\\$masterLast\\PPD.zip");

Within the page, I can use the variables to provide the latest name, link and MD5 hash.

[insert_php]echo($developLast);[/insert_php]
[insert_php]echo($developLink);[/insert_php]
[insert_php]echo($developMd5);[/insert_php]

This way when a new build has uploaded the page is automatically up to date. The only thing I have to maintain is the documentation.

Conclusion

Continuous deployment helps to quickly release new versions of your software so you can gather feedback. Using Visual Studio Team Services you have endless possibilities to deploy your software in any way. In my example, this is a simple creation of a zip file and upload to an FTP. By using a dynamic page, the latest builds are directly available for download. This way I only have to maintain updates to the documentation. I hope this blog post was useful and if you have any comments or questions please leave them below.

Tags:
    agile
    continuous deployment
    development
    team foundation server
    tools
    visual studio team services
Ryan Ververs-Bijkerk
Written by Ryan Ververs-Bijkerk

Ryan is a self-employed technologist at GO-INIT who specializes in the EUC and code area. He primarily focuses on the user experience in centralized desktop environments.

Search

    Follow me

    Community