Skip to content
Snippets Groups Projects
Commit 66cefb7b authored by Mike McQuaid's avatar Mike McQuaid
Browse files

brew-test-bot: handle Jenkins pull request plugin.

parent 731d4016
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment