Define a Gated Check-In Build Process to Validate Changes

When a developer checks in changes that break the build, the result can be a significant hassle for small teams. The cost to larger teams can be expensive as measured by lost productivity and schedule delays. You can guard some or all of your code base against this problem by creating a gated check-in build definition.

In this topic

  • How Gated Check-In Builds Affect Your Team

  • Define a Gated Check-In Build Process

  • Guidelines to Improve Build Process Function and Performance

  • How Gated Check-in Builds are Run

    • Automatically Run Gated Check-in Builds

    • Manually Run Gated Check-in Builds and Private Builds

How Gated Check-In Builds Affect Your Team

When a gated check-in build is created, changes that the developer submits are placed in a shelveset and automatically built in your build system. The build must be successful for the check-in process to be completed. For more information, see Check In Pending Changes that Are Controlled by a Gated Check-in Build.

If some of your users must bypass gated check-in, you can set the Override check-in validation by build permission to Allow for a group of your users. For more information, see Team Foundation Server Permissions.

Define a Gated Check-In Build Process

Required Permissions

To perform this procedure, your Edit Build Definition permission must be set to Allow. For more information, see Team Foundation Server Permissions.

To define a gated check-in build

  1. In Team Explorer, click the team project in which you want the build process to function.

  2. On the Build menu, click New Build Definition.

    The New Build Definition window appears with the General tab displayed.

  3. In the Build definition name box, type a name.

  4. On the Trigger tab, click Gated Check-in accept check-ins only if the submitted changes merge and build successfully.

  5. Click the Workspace tab. In the Working folders table, map the version-control folders that this build definition will control to local folders on the build agent.

    Tip

    Follow these guidelines:

    • To ensure that your build process functions correctly and to improve performance, include all folders (and only these folders) that contain files that your build process requires.

    • Make sure that you do not specify any version-control folder that is also specified on the Workspace tab of another gated check-in build definition. Otherwise, when a user checks in files to these folders, the build system requires them to decide which build definition to queue.

    • For more information about how to specify the mappings, see Work with Build Workspaces.

  6. Click the Process tab. In the Items to Build parameter, specify the solutions or code projects that you want to build.

  7. Set the parameters to ensure that check-ins meet the specific standards for code quality of your team without delaying your developers unnecessarily.

    For more information, see Guidelines to Improve Build Process Function and Performance later in this topic.

  8. Click the Build Defaults and Retention Policy tabs, and apply appropriate settings in each tab.

    For more information, see Create a Basic Build Definition.

Guidelines to Improve Build Process Function and Performance

To minimize the time that is required to process the build, you should consider following these guidelines when you specify values for the build process parameters on the Process tab.

Required node

  • Items to Build, Configurations to Build: If you leave this parameter empty, the default platform and configuration is used for each solution and project. To optimize performance, adhere to the following guidelines:

    • If a platform-configuration pair builds more quickly than other pairs, specify it in this parameter.

    • Specify as few platform-configuration pairs as possible.

Basic node

  • Automated Tests:

    • For fastest performance, set Disable Tests to True.

    • If your code must pass certain tests, set Disable Tests to False, and then define a set of tests to run in the build. You can improve performance by running only the tests that you require. To designate those tests, filter them by either category or priority. For more information, see Use Your Build System to Work with Tests.

  • Clean Workspace: For faster performance, set this value to None (recommended) or Outputs. However, your team is more likely to miss some types of defects (such as those introduced during refactoring) if the workspace is not cleaned. For more information, see Define a Build Using the Default Template.

  • Perform Code Analysis: For faster performance, set this value to Never.

  • Source and Symbol Server Settings, Index Sources: For faster performance, set this value to False.

Advanced node

  • Agent Settings

    • Name Filter or Tags Filter: Use either a build agent name or a tag to bind this build definition to a build agent that is designed specifically for running this build. The build agent should run on hardware that is sufficiently powerful to process this build quickly enough to meet your team's performance expectations.

      For example, developers on your team might not mind waiting 15 minutes for the build to finish. But your developers are not likely to accept having to wait eight hours before they can determine whether their code has successfully checked in.

    • Maximum Execution Time: Set this value to a reasonably small number. For example, 15 minutes might work for your team, but eight hours is probably too long.

  • Copy Outputs to Drop Folder: The system takes this value as False, even if you set it to True.

  • Create Work Item on Failure: The system takes this value as False, even if you set it to True.

  • Label Sources: Set this value to False.

For more information about how to set the values of build process parameters, see Define a Build Using the Default Template.

How Gated Check-in Builds are Run

Each gated check-in build definition can have only one running build at a time. Therefore, large and active teams are more likely to develop a large queue of gated check-in builds. The following best practices can help your team avoid blocking progress:

  • Dedicate a build machine that has powerful hardware (for example, a fast processor and a fast hard disk) to the build agent that your gated check-in build definition uses.

  • Define the build so that the build agent does only the work that is required to validate the quality of code that is being checked in. For more information, see Guidelines for Settings on the Process Tab earlier in this topic.

Gated check-in builds can be run either run automatically or manually.

Automatically Run Gated Check-in Builds

A gated check-in build is run automatically when either of the following events occur:

  • A build has been defined with the Gated Check-in check box selected on the Trigger tab of the build definition.

  • Someone attempts to check in one or more changes that intersect with any of the mapped folders in the Workspace tab of the build definition.

Manually Run Gated Check-in Builds and Private Builds

Developers who want to feel more confident about the changes that they are checking in can manually queue a build of a shelveset. When they take this approach, they can specify one of two options for what the system does next if the build succeeds:

  • System checks in the changes (manual gated check-in build): This option can be handy for developers who want to validate their code before checking in but who work on a team that does not use the gated check-in trigger.

  • System does not check in the changes (private build): Developers can use this option when they want to validate some changes in a shelveset but not check them in.

For more information, see Queue a Build.

Change History

Date

History

Reason

August 2011

Revised various passages to improve clarity.

Information enhancement.