I look after builds of our products and have been asked to come up with a way of customising an existing build definition to build different branches when required.

The build process for this product has several custom steps and actions already and the product has a large amount of project files that are built so its not effective to set up a new build definition for every new branch that is created.

The build definition is set up to build from the Main branch. The aim is to enter a particular branch (using a workflow argument that can be entered when a build is queued) which will then be built instead of the default Main branch without having to edit the build definition.

I have a separate test program that I use for testing all my custom build activities and procedures on. In the workflow for this build definition, I have added a fair few build messages for logging purposes so that I can view the values of variables used in the build process.

I have also created a branch based on this test program ready for testing of a build definition that can be used to build more than one branch

first off, I ran a build for the original test solution's project files from the original branch, then changed the build definition so that the same would be done using the new branch and ran another build. When comparing the build logs between the 2 branches there are only a few minor differences between them. (Logging Verbosity set to Diagnostic)

1st difference - I looked a the Workspace variable and the Folders property of the builds reference their respective branches, specifically the ServerItem property of the Folders property

2nd difference - The project files being built (BuildSettings.ProjectsToBuild) are coming from the respective branches

I haven't seen any other differences between the 2 build logs other than these

The main question here:

Is there a standard way of swapping the branches being built for a single build definition?

If not, would it be possible to simply change all references to the default Main branch in the customised workflow template (in Workspace and BuildSettings.ProjectsToBuild) to the entered branch when queueing a build?

As always, thanks in advance for any and all help

link|improve this question

79% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I have managed to amend my build's workflow template so that builds for multiple branches of the solution are possible. To achieve this I had to change certain things within the workflow and also create some extra workspaces for the service account that run the builds.

  1. I added an argument to the workflow so that the required branch can be entered when the build is queued.

  2. I changed the drop location for the build so that it is relevant for the entered branch (optional)

  3. Created a separate sources directory on the build machine for the branch build

  4. Initialised the WorkspaceName and SourcesDirectory so that they match the new workspace name and sources directory folder

  5. I created a custom activity to change the list of projects/solutions in BuildSettings.ProjectsToBuild so that they were referencing them from the entered branch

  6. I noticed through my testing phase that even though my new workspace for the entered branch was initially set up to use the entered branch as its ServerItem, it would still create the workspace with the ServerItem that was entered in the build definition. To get around this, I created another custom activity to remap the branch workspace so that the ServerItem was pointing to the correct branch

There are a few other things that I have involved in my workflow, but they are more tweaks that my developers have requested, the above steps have resulted in multiple branch builds for a single build definition.

link|improve this answer
If you'll give more detail on how you solved this problem, then I will upvote. – John Saunders Oct 11 '11 at 15:39
1  
@Vermin: agreed... I'd like to see your solution as well. – Anderson Imes Oct 12 '11 at 18:11
feedback

In short: No and Yes :-)

A bit more elaboration on those answers, the TFS system default templates prefer to have a single build definition for every branch you want to build, or specify all branches that need to be build at onces, but in a single build definition. There is not a standard way to choose from the available branches you have in the Queue new build dialog.

Next answer would be Yes, because indeed you can customize your build template and I understand you already started doing that. Depending on your branching structure it should be fairly easy to add a property to your template that shows up in the Queue new build dialog, and have a (for example) semi-column seperated string with all branches your want to build during a run, And for each element in that list add a solution to build in the workflow process before the template actually startes iterating that list.

That should do the job, however, I am interested in how you ended-up in wanting this ability? Are you not using VS solution files?

link|improve this answer
Hi, Thanks for your help there. I have begun making changes to my workflow to (hopefully) achieve my goal. In answer to your question, no the build definition is set up to build the project files for the solution, not the solution file itself. – Vermin Oct 7 '11 at 8:16
Also, its more of a case of replacing the default branch being built in the build definition as opposed to adding branches to the build, so im currently working on using a different workspace for the chosen branch (entered via a workflow argument when queueing the build) and then will be working on changing the BuildSetting.ProjectsToBuild to reference the chosen branch instead of the default branch – Vermin Oct 7 '11 at 8:25
feedback

I also wanted some more branch agility in my build definitions, so I implemented a code activity to change ProjectsToBuild. Here's the code (removed project-specific stuff):

[BuildActivity(HostEnvironmentOption.All)]
public sealed class ConvertProjectsAccordingToBranch : CodeActivity
{
    public static string s_MainBranch = "$/MyTeamProject/Main";

    public InArgument<IBuildDetail> BuildDetail { get; set; }
    public InArgument<BuildSettings> BuildSettingsOriginal { get; set; }
    public OutArgument<BuildSettings> BuildSettingsConverted { get; set; }

    protected override void Execute(CodeActivityContext context)
    {
        Logger.Instance.Init(context);
        IBuildDetail buildDetail = BuildDetail.Get(context);
        BuildSettingsConverted.Set(context, ConvertProjects(BuildSettingsOriginal.Get(context), buildDetail.BuildDefinition));
    }

    /// <summary>Returns a BuildSettings with ProjectsToBuild converted according to the build definition's workspace</summary>
    public BuildSettings ConvertProjects(BuildSettings settingsOriginal, IBuildDefinition buildDefinition)
    {
        var mappings = buildDefinition.Workspace.Mappings;
        if (mappings.Count() != 1)
        {
            throw new BuildProcessException(string.Format(CultureInfo.InvariantCulture,
                "Build definition must have exactly one workspace mapping. Build definition ID:{0} has {1} mappings",
                buildDefinition.Id,   // IBuildDefinition doesn't have any Name property, seriously!
                mappings.Count()));
        }

        string definitionBranch = mappings.First().ServerItem;
        var settingsConverted = new BuildSettings()
        {
            PlatformConfigurations = settingsOriginal.PlatformConfigurations,
        };

        foreach (string projectOriginal in settingsOriginal.ProjectsToBuild)
        {
            var projectConverted = projectOriginal.Replace(s_MainBranch, definitionBranch);
            if (!projectConverted.StartsWith(definitionBranch))
            {
                throw new BuildProcessException(string.Format(CultureInfo.InvariantCulture,
                    "Project {0} is not under main branch {1},  Definition branch: {2}",
                    projectOriginal, s_MainBranch, definitionBranch));
            }

            settingsConverted.ProjectsToBuild.Add(projectConverted);
            Logger.Instance.Log("Converted ProjectToBuild: {0},  original: {1}", projectConverted, projectOriginal);
        }

        return settingsConverted;
    }
}

I also have unit test for ConvertProjects(), but it's dependent on local stuff, so I didn't post it here. It's trivial, and definitely worth wrining!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.