Changeset 272785 in webkit
- Timestamp:
- Feb 12, 2021, 10:06:05 AM (4 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/CISupport/build-webkit-org/steps.py
r272743 r272785 1135 1135 1136 1136 def __init__(self, **kwargs): 1137 shell.ShellCommand.__init__(self, timeout= 2* 60, logEnviron=False, **kwargs)1137 shell.ShellCommand.__init__(self, timeout=10 * 60, logEnviron=False, **kwargs) 1138 1138 1139 1139 def start(self): … … 1153 1153 if match: 1154 1154 identifier = match.group(1) 1155 if identifier: 1156 identifier = identifier.replace('trunk', 'main') 1155 1157 self.setProperty('identifier', identifier) 1156 1158 step = self.getLastBuildStepByName(CheckOutSource.name) -
trunk/Tools/CISupport/build-webkit-org/steps_unittest.py
r272743 r272785 512 512 self.expectRemoteCommands( 513 513 ExpectShell(workdir='wkdir', 514 timeout= 120,514 timeout=600, 515 515 logEnviron=False, 516 516 command=['python', 'Tools/Scripts/git-webkit', 'find', 'r272692']) + 517 ExpectShell.log('stdio', stdout='Identifier: 233939@ trunk') +517 ExpectShell.log('stdio', stdout='Identifier: 233939@main') + 518 518 0, 519 519 ) 520 self.expectOutcome(result=SUCCESS, state_string='Identifier: 233939@ trunk')520 self.expectOutcome(result=SUCCESS, state_string='Identifier: 233939@main') 521 521 rc = self.runStep() 522 self.assertEqual(self.getProperty('identifier'), '233939@ trunk')522 self.assertEqual(self.getProperty('identifier'), '233939@main') 523 523 return rc 524 524 … … 528 528 self.expectRemoteCommands( 529 529 ExpectShell(workdir='wkdir', 530 timeout= 120,530 timeout=600, 531 531 logEnviron=False, 532 532 command=['python', 'Tools/Scripts/git-webkit', 'find', 'r272692']) + -
trunk/Tools/ChangeLog
r272782 r272785 1 2021-02-12 Aakash Jain <aakash_jain@apple.com> 2 3 [build.webkit.org] commit identifier should show main instead of trunk 4 https://bugs.webkit.org/show_bug.cgi?id=221798 5 6 Reviewed by Jonathan Bedard. 7 8 * CISupport/build-webkit-org/steps.py: 9 (ShowIdentifier.__init__): Increased timeout to 10 minutes (since first run might take a while). 10 (ShowIdentifier.evaluateCommand): 11 * CISupport/build-webkit-org/steps_unittest.py: Updated unit-tests. 12 1 13 2021-02-12 Jonathan Bedard <jbedard@apple.com> 2 14
Note:
See TracChangeset
for help on using the changeset viewer.