WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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
Details
Formatted Diff
Diff
Patch
(3.54 KB, patch)
2022-01-04 10:39 PST
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch
(3.31 KB, patch)
2022-01-04 13:34 PST
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch
(3.48 KB, patch)
2022-01-04 15:08 PST
,
Jonathan Bedard
ews-feeder
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2022-01-04 09:28:16 PST
<
rdar://problem/87094989
>
Jonathan Bedard
Comment 2
2022-01-04 09:31:09 PST
PR:
https://github.com/WebKit/WebKit/pull/61
Jonathan Bedard
Comment 3
2022-01-04 10:12:36 PST
Created
attachment 448307
[details]
Patch
Jonathan Bedard
Comment 4
2022-01-04 10:39:21 PST
Created
attachment 448309
[details]
Patch
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
Created
attachment 448332
[details]
Patch
Jonathan Bedard
Comment 8
2022-01-04 15:08:29 PST
Created
attachment 448340
[details]
Patch
Jonathan Bedard
Comment 9
2022-01-11 10:08:51 PST
Landed
245802@main
(
r287719
)
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug