Working with Bitbucket Server

Version 8 by Steve Luo
on Aug 24, 2019 10:01.


compared with
Version 9 by Steve Luo
on Oct 21, 2019 09:10.


Key
These lines were removed. This word was removed.
These lines were added. This word was added.

View page history


There are 4 changes. View first change.

 QuickBuild integrates with Bitbucket server via the Bitbucket server repository. This repository has all features of a normal [Git repository|Working with Git], but add the ability to build against open pull requests, and update pull request status based on build result.
  
 h2. Build against pull requests
  
 To build against pull requests, define a Bitbucket server repository like below:
  
 !repository.png!
  
 In repository definition, tick the _build open pull requests_ option like below:
  
 !pull_requests.png!
  
 Upon triggering of configuration using such repository, QuickBuild will first find all open pull requests at Bitbucket server side and then fire separate build request(s) for each open pull request to check changes against that pull request, and build that pull request if necessary. So if there are many open pull requests, many build requests will be fired. So it is best practice to enable [concurrent build|Build Concurrency and Deadlock] to speed up verification of multiple pull requests.
  
 As demonstrated below, each finished build will display associated pull request as branch information and changes of the build will be calculated against previous build with the same pull request branch.
 !branch.png!
  
 Upon manual triggering of such configuration, all matched pull requests will be built even if they've not being updated, just like what QuickBuild behaves when trigger configurations using normal repositories. However if you schedule the configuration and set build condition to _If changes found in referenced repositories_ (or something similar), QuickBuild will only build against new/updated pull requests.
  
 h2. Update pull request status at Bitbucket server side based on build status
  
 QuickBuild will update pull request status automatically to reflect build status when build is started/finished, as demonstrated below:
 !build_status.png!
  
 h2. BitBucket Webhook Integration
  
 QuickBuild can trigger builds via BitBucket webhooks since 9.0.
  
 h3. Config BitBucket
 To enable the webhook, first you need go to BitBucket server webhook settings page to configure the QuickBuild side related information:
  
 !bitbucket-settings.png!
  
 h3. Config QuickBuild
  
 h4. Add anonymous group
  
 As the webhook is triggered without authentication, anonymous group should be added and it should have the permission to use RESTful API.
  
 h4. Add webhook settings
  
 QuickBuild only allow repo:refs_changed event to trigger the builds, other events will be ignored. To add integration at QuickBuild side, please go to configuration settings page and then choose Webhook -> BitBucket from right side menu:
  
 !webhook-menu.png!
  
 Then, you can add the settings:
 * *Trigger User* the user to trigger the build
 * *Webhook Secret* the secret should be the same as what you defined in BitBucket
 * *Trigger Condition* the trigger condition in Groovy scripts, when the result is true, build will be triggered, otherwise, the build will not be triggered.
 * *Trigger Events* the events which are allowed to trigger the build, by default, only push event (_repo:refs_changed_) can trigger the build.
  
 !bitbucket-webhook-settings.png!
  
 h4. Supported Events
  
QuickBuild supports below events:
  
* push. repo:refs_changed
 * repo modified. repo:modified
 * repo forked. repo:forked
 * pull request opened. pr:opened
 * pull request approved. pr:reviewed:approved
 * pull request reviewed. pr:reviewed:unapproved
 * pull request merged. pr:merged
 * pull request declined. pr:declined
 * pull request deleted. pr:deleted
  
 For detailed event payload please refer to below page:
  
 https://confluence.atlassian.com/bitbucketserver/event-payload-938025882.html
  
 You can use the payload data in the script. For example, in "Trigger Condition", you can use payload data like:
  
 if ("pr:merged".equals(event)) {
  logger.warn(delivery.actor.name); // delivery contains the payload data
 }