aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-test-bot.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb
index 7d9538bce..8a9289aac 100755
--- a/Library/Contributions/cmd/brew-test-bot.rb
+++ b/Library/Contributions/cmd/brew-test-bot.rb
@@ -162,6 +162,17 @@ class Test
diff_end_sha1 = current_sha1
end
+ # Handle Jenkins pull request builder plugin.
+ if ENV['ghprbPullId'] and ENV['GIT_URL']
+ git_url = ENV['GIT_URL']
+ git_match = git_url.match %r{.*github.com[:/](\w+/\w+).*}
+ if git_match
+ github_repo = git_match[1]
+ pull_id = ENV['ghprbPullId']
+ @url = "https://github.com/#{github_repo}/pull/#{pull_id}"
+ end
+ end
+
if @hash == 'HEAD'
if diff_start_sha1 == diff_end_sha1 or \
single_commit?(diff_start_sha1, diff_end_sha1)