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

test-bot: use another method to find Jenkins PR.

parent c2ece46e
No related branches found
No related tags found
No related merge requests found
......@@ -304,6 +304,11 @@ module Homebrew
@url = ENV["ghprbPullLink"]
@hash = nil
test "git", "checkout", "origin/master"
elsif ENV["GIT_BRANCH"] && ENV["GIT_URL"]
%r{origin/pr/(\d+)/(merge|head)} =~ ENV["GIT_BRANCH"]
pr = $1
@url = "#{ENV["GIT_URL"]}/pull/#{pr}"
@hash = nil
# Use Travis CI pull-request variables for pull request jobs.
elsif travis_pr
@url = "https://github.com/#{ENV["TRAVIS_REPO_SLUG"]}/pull/#{ENV["TRAVIS_PULL_REQUEST"]}"
......
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