RESOLVED FIXED 234848
[EWS] Support pull-requests in ConfigureBuild
https://bugs.webkit.org/show_bug.cgi?id=234848
Summary [EWS] Support pull-requests in ConfigureBuild
Jonathan Bedard
Reported 2022-01-04 09:27:17 PST
The ConfigureBuild step should support GitHub pull-requests.
Attachments
Patch (3.39 KB, patch)
2022-01-04 10:12 PST, Jonathan Bedard
no flags
Patch (3.54 KB, patch)
2022-01-04 10:39 PST, Jonathan Bedard
no flags
Patch (3.31 KB, patch)
2022-01-04 13:34 PST, Jonathan Bedard
no flags
Patch (3.48 KB, patch)
2022-01-04 15:08 PST, Jonathan Bedard
ews-feeder: commit-queue-
Radar WebKit Bug Importer
Comment 1 2022-01-04 09:28:16 PST
Jonathan Bedard
Comment 2 2022-01-04 09:31:09 PST
Jonathan Bedard
Comment 3 2022-01-04 10:12:36 PST
Jonathan Bedard
Comment 4 2022-01-04 10:39:21 PST
Aakash Jain
Comment 5 2022-01-04 12:13:30 PST
Comment on attachment 448309 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=448309&action=review > Tools/CISupport/ews-build/steps.py:79 > + return '{}/pull/{}'.format(GITHUB_URL, pr_number) pr_number isn't defined in this method > Tools/CISupport/ews-build/steps.py:83 > + def pull_request(self): method name seems too generic and doesn't indicate what it might be doing, maybe something like get_pull_request_number might be more informative. > Tools/CISupport/ews-build/steps.py:86 > + return int(pull_request) better to call this pr_number to indicate that it is an integer rather than an object. Also, probably need to gracefully handle the case when conversion to int raises an exception > Tools/CISupport/ews-build/steps.py:88 > + if self.getProperty('event') != 'pull_request': who is setting these 'event' and 'branch' properties? > Tools/CISupport/ews-build/steps.py:93 > + self.setProperty('pull_request', match.group('id')) Is the regex guaranteed to contain the PR number and that would be guaranteed to be integer? It might be good idea to validate that this can be cast to an int before setting the property (since we will try to read it as a int later on) > Tools/CISupport/ews-build/steps.py:150 > + self.addURL('Pull-request {}'.format(pr_number), GitHub.pr_url(pr_number)) I think it would be better to display "Pull Request" instead of "Pull-reqeust"
Jonathan Bedard
Comment 6 2022-01-04 12:50:35 PST
Comment on attachment 448309 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=448309&action=review >> Tools/CISupport/ews-build/steps.py:88 >> + if self.getProperty('event') != 'pull_request': > > who is setting these 'event' and 'branch' properties? That comes from buildbot's digestion of GitHub hooks. http://docs.buildbot.net/current/manual/configuration/wwwhooks.html outlines some of the basics >> Tools/CISupport/ews-build/steps.py:93 >> + self.setProperty('pull_request', match.group('id')) > > Is the regex guaranteed to contain the PR number and that would be guaranteed to be integer? > It might be good idea to validate that this can be cast to an int before setting the property (since we will try to read it as a int later on) The regex forces id to be an integer, so we wouldn't have a match if it wasn't an integer. I was under the impression properties needed to be strings, but looking at some other builds, that doesn't look to be true.
Jonathan Bedard
Comment 7 2022-01-04 13:34:34 PST
Jonathan Bedard
Comment 8 2022-01-04 15:08:29 PST
Jonathan Bedard
Comment 9 2022-01-11 10:08:51 PST
Note You need to log in before you can comment on or make changes to this bug.