Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Locate the newly added custom field and click the cogwheel button.
  2. Click Configure.
  3. On the opened page, click Edit Default Value.
  4. Select the appropriate TeamCity server, project and build configuration. You can also add an optional comment and define the build parameters.
    Image RemovedImage Added
  5. Optionally, you can allow users to view and edit the comment appended to the build. You can also allow users to view and edit properties which the build is triggered with.
  6. Click Set Default.

Once you have configured and added the custom field, you can remotely run builds in TeamCity from JIRA.

...

 

Code Block
languagepowershell
teamcity.build.branch=your_vcs_branch_name
# This build parameter defines which branch to choose for build creation. It may look like: teamcity.build.branch=2.2.0
If you want to add multiple parameters, you need to use the ';' (semicolon) as a separator for multiple parameters, as follows:
Code Block
languagepowershell
teamcity.agent.name=Windows2012R2;teamcity.build.branch=2.2.0
If you want to pass the issue key to TeamCity for mapping the build to issue, you need to add the following property:
Code Block
languagepowershell
issue_key=$JIRA_KEY
Info

For the list of accepted build parameters, see TeamCity documentation.