Configuring VCS Post-Commit Hooks for TeamCity
By default, TeamCity uses a polling approach to detect changes in a VCS repository, that is for each VCS root. It periodically sends requests to the version control repository server to find out whether there are new revisions. For large installations with hundreds of VCS roots, this may create a noticeable load on the VCS server and on TeamCity.
To avoid background polling, it is possible to set up a post-commit hook on the VCS server, which will notify TeamCity to start checking for changes procedure. This way, TeamCity will make background requests for changes detection only when such changes are available.
Overview
Even with commit hooks configured and working properly, TeamCity still makes requests for changes on the server start and on each build queuing (or starting) to ensure the latest changes are used even if commit hooks stopped to function.
When a commit hook call comes in, TeamCity starts checking for changes in VCS roots which match the request.
If a change is found during the check, TeamCity automatically increases the VCS polling interval (the minimum after the increase is 15 minutes, maximum is 4 hours, increased by 2 times on each successful check). If the commit hook stops working (for example, TeamCity finds a change in a VCS root which it did not receive a commit hook call for), the VCS polling interval value is reset to default.
Commit hooks are received via TeamCity REST API requests which should typically be configured in the post-commit repository triggers:
POST .../app/rest/vcs-root-instances/commitHookNotification?locator=<vcsRootInstancesLocator>
The request returns textual details as to the performed operation or an error message.
It is important to find <vcsRootInstancesLocator>
for the request to match only the affected VCS roots from those configured in the TeamCity instance. If too many VCS roots are matched by the request configured in the commit hook, it will lead to more requests and more overload on the VCS repository and TeamCity than using the default polling approach. Some examples of the "locator" are provided below.
The request should be performed by a user who has the "View project and all parent projects" permission for all the projects where the VCS root is defined.
Note that by default only the first 100 VCS root instances will be matched by the request. To match more, count:99999
can be added as below.
The most common form of <vcsRootInstancesLocator>
is:
However, for VCS roots without the parameter %-references
, a more performant option can be used:
Commit hooks examples for UNIX-based VCS servers are described below.
Post-commit generic script
Save the script below on a VCS server as teamcity-trigger.sh
(you will need a personal access token):
For Perforce, you can use this dedicated script.
Set the variables according to your TeamCity server. The user must have the "View build configuration settings" permission for projects where the VCS root is defined. This permission is included in the Project Developer role by default.
Setting up post-receive hook on Git server
1. Locate the Git repository root on the target VCS server. It should contain the .git/hooks
directory with some templates.
2. Create the .git/hooks/post-receive
file with a line:
where <VCS root repository URL>
must be replaced with the repository URL specified in the corresponding TeamCity VCS root and the value should be URL-escaped. Note that locator has matchType:contains
in it, which means you can specify some part of URL too.file
.
3. Make sure that both teamcity-trigger.sh
and hooks/post-receive
scripts can be read and executed by Git user(s). You may need to execute the following command:
Setting up hook on Mercurial server
1. Locate the Mercurial repository root on the target VCS server.
2. Create or edit the .hg/hgrc config
and add the following snippet:
where <VCS root repository URL>
must be replaced with the repository URL specified in the corresponding TeamCity VCS root and the value should be URL-escaped. Note that the locator has matchType:contains
in it, which means you can specify some part of the URL too.
3. Make sure that teamcity-trigger.sh
is executable. You may need to execute the following command:
Setting up post-commit hook on Subversion server
1. Locate the Subversion repository root containing the db
, hooks
, locks
, and other directories. We need the hooks
directory.
2. Create the hooks/post-commit
file with a line:
where <VCS root repository URL>
must be replaced with the repository URL specified in the corresponding TeamCity VCS root and the value should be URL-escaped. Note that the locator has matchType:contains
in it, which means you can specify some part of URL too.
3. Make sure that both teamcity-trigger.sh
and hooks/post-commit
script can be read and executed by the process of the Subversion server. You may need to execute the following command:
Setting up post-commit hook on Perforce server
There are two ways to set up a post-commit hook in Perforce:
Using the dedicated script. This is a recommended approach.
Using the generic script. Obsolete approach.
Using post-commit script for Perforce
You can install the dedicated post-commit script on your Perforce server. This script will autodetect Perforce VCS roots in TeamCity and trigger the respective builds.
To be able to use the script, you need to generate an access token first. The TeamCity user assigned to this token must have the "Run build" permission for projects where Perforce VCS roots are defined. This permission is included in the Project Developer role by default.
It is also recommended configuring a Perforce Administrator Access connection in the project settings. TeamCity will use it to ensure that all changed files in the Perforce changelist are collected. If such a connection is not configured explicitly, TeamCity will try to connect to Perforce using settings of one of the project's VCS roots.
Save this script on your Perforce server as
teamcity-hook.sh
:#!/bin/sh # How to use this script: # 1. Save the script on the Perforce server under the name /path/teamcity-hook.sh. # 2. Run chmod +x /path/teamcity-hook.sh. # 3. Set up a change-commit trigger by adding the following line when editing the specification with the `p4 triggers` command: # check-for-changes-teamcity change-commit //depot/... "/path/teamcity-hook.sh %change%" # 4. Update the variables below. # # Update the following variables: # TeamCity server root URL: TEAMCITY_SERVER=http://localhost:8111/bs # Access token of a user on TeamCity server which can run builds in all relevant configurations (Developer role) TC_ACCESS_TOKEN="<token_value>" # This P4PORT value will be used to find relevant VCS roots, it should be equal to the P4Port setting in the VCS root: P4PORT="localhost:1666" CHANGE=$1 # The following is one line: (sleep 10; curl -H "Authorization: Bearer $TC_ACCESS_TOKEN" -d "p4port=$P4PORT&changelistId=$CHANGE" "$TEAMCITY_SERVER/app/perforce/commitHook" -o /dev/null) >/dev/null 2>&1 <&1 & exit 0Run
chmod +x /path/teamcity-hook.sh
.Edit the Perforce specification with the
p4 triggers
command and set up a change-commit trigger by adding the following line:check-for-changes-teamcity change-commit //depot/... "/path/teamcity-hook.sh %change%"where
//depot/...
is the depot which is used in TeamCity builds. If there are multiple depots, you can replace this path with//...
.Update the variables from the script with your TeamCity settings.
Editing Perforce specification with generic script
Set up a change-commit
trigger by adding one or several lines when editing the specification. The text below must be placed in one line, one line per trigger.
where <VCS Root locator>
can be one of the following:
for Stream-based VCS roots:
vcsRoot:(type:perforce,count:99999),property:(name:stream,value://streamdepot/streamname,matchType:contains,ignoreCase:true),count:99999for Client-based VCS roots:
vcsRoot:(type:perforce,count:99999),property:(name:client,value:<client name>,matchType:contains,ignoreCase:true),count:99999for Client-mapping VCS roots:
vcsRoot:(type:perforce,count:99999),property:(name:client-mapping,value:<unique client mapping>,matchType:contains,ignoreCase:true),count:99999where
<unique client mapping>
should match the Perforce depot path in the TeamCity VCS root after all parameters' resolution. For the rulecheck-for-changes-teamcity change-commit //depot/project1/...
it would be//depot/project1/
.
Eachcheck-for-changes-teamcity
rule line describes an association between the path with the commit (//depot/project1
) and a set of VCS roots which should be checked for changes.
Setting up service hook on Azure DevOps Server for TFVC and Git
The latest Azure DevOps Server (formerly, Team Foundation Server) and Azure DevOps Services provide service hooks for code commit events. To create a hook, perform the following steps:
Open the admin page for a team project in web access.
Create a subscription by running the wizard.
Select the "Web Hooks" service to integrate with.
Select the "Code checked in" event and specify a filter.
Fill in the TeamCity username, password, and server URL in the format:
"$SERVER/app/rest/vcs-root-instances/commitHookNotification?locator=$LOCATOR"where the
$LOCATOR
value depends on the TFS repository type as described in the sections below.
TFVC Repository
where <TFS server url>
must be replaced with the value specified in the Azure DevOps VCS root URL and path properties. Example:
Git Repository
where <VCS root repository URL>
must be replaced with the repository URL specified in the corresponding TeamCity VCS root and the value should be URL-escaped. Example:
6. Click Finish to create the service hook.
Troubleshooting
It is recommended to try executing the following command from the command line before configuring the actual hook:
If the commit hook matches the VCS root on the server correctly, you should see the output similar to this:
If the commit hook has not found any VCS roots, it will report an error:
Possible reasons for this output:
the specified locator is incorrect, it does not match any VCS root on the server
the specified user does not have enough permission for at least one of the matched VCS roots.
To check what roots are actually matched, use the request (see also details):