Changeset 259787 in webkit
- Timestamp:
- Apr 9, 2020, 3:05:58 AM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
-
BuildSlaveSupport/ews-build/steps.py (modified) (5 diffs)
-
BuildSlaveSupport/ews-build/steps_unittest.py (modified) (7 diffs)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/ews-build/steps.py
r259719 r259787 1311 1311 steps_to_add.append(CompileJSCToT()) 1312 1312 else: 1313 steps_to_add.append(CompileWebKit ToT())1313 steps_to_add.append(CompileWebKitWithoutPatch()) 1314 1314 steps_to_add.append(AnalyzeCompileWebKitResults()) 1315 1315 # Using a single addStepsAfterCurrentStep because of https://github.com/buildbot/buildbot/issues/4874 … … 1328 1328 1329 1329 1330 class CompileWebKit ToT(CompileWebKit):1330 class CompileWebKitWithoutPatch(CompileWebKit): 1331 1331 name = 'compile-webkit-tot' 1332 1332 haltOnFailure = False … … 1348 1348 1349 1349 def start(self): 1350 compile_tot_step = CompileWebKit ToT.name1350 compile_tot_step = CompileWebKitWithoutPatch.name 1351 1351 if self.getProperty('group') == 'jsc': 1352 1352 compile_tot_step = CompileJSCToT.name … … 1819 1819 UnApplyPatchIfRequired(), 1820 1820 ValidatePatch(verifyBugClosed=False, addURLs=False), 1821 CompileWebKit ToT(),1821 CompileWebKitWithoutPatch(), 1822 1822 ValidatePatch(verifyBugClosed=False, addURLs=False), 1823 1823 KillOldProcesses(), … … 2175 2175 elif platform == 'gtk': 2176 2176 steps_to_add.append(InstallGtkDependencies()) 2177 steps_to_add.append(CompileWebKit ToT())2177 steps_to_add.append(CompileWebKitWithoutPatch()) 2178 2178 steps_to_add.append(ValidatePatch(verifyBugClosed=False, addURLs=False)) 2179 2179 steps_to_add.append(KillOldProcesses()) -
trunk/Tools/BuildSlaveSupport/ews-build/steps_unittest.py
r259719 r259787 39 39 CheckOutSource, CheckOutSpecificRevision, CheckPatchRelevance, CheckPatchStatusOnEWSQueues, CheckStyle, 40 40 CleanBuild, CleanUpGitIndexLock, CleanWorkingDirectory, CompileJSC, CompileJSCToT, CompileWebKit, 41 CompileWebKit ToT, ConfigureBuild, CreateLocalGITCommit,41 CompileWebKitWithoutPatch, ConfigureBuild, CreateLocalGITCommit, 42 42 DownloadBuiltProduct, DownloadBuiltProductFromMaster, ExtractBuiltProduct, ExtractTestResults, 43 43 FindModifiedChangeLogs, InstallGtkDependencies, InstallWpeDependencies, KillOldProcesses, … … 1000 1000 1001 1001 1002 class TestCompileWebKit ToT(BuildStepMixinAdditions, unittest.TestCase):1003 def setUp(self): 1004 self.longMessage = True 1005 return self.setUpBuildStep() 1006 1007 def tearDown(self): 1008 return self.tearDownBuildStep() 1009 1010 def test_success(self): 1011 self.setupStep(CompileWebKit ToT())1002 class TestCompileWebKitWithoutPatch(BuildStepMixinAdditions, unittest.TestCase): 1003 def setUp(self): 1004 self.longMessage = True 1005 return self.setUpBuildStep() 1006 1007 def tearDown(self): 1008 return self.tearDownBuildStep() 1009 1010 def test_success(self): 1011 self.setupStep(CompileWebKitWithoutPatch()) 1012 1012 self.setProperty('fullPlatform', 'ios-simulator-11') 1013 1013 self.setProperty('configuration', 'release') … … 1024 1024 1025 1025 def test_failure(self): 1026 self.setupStep(CompileWebKit ToT())1026 self.setupStep(CompileWebKitWithoutPatch()) 1027 1027 self.setProperty('fullPlatform', 'mac-sierra') 1028 1028 self.setProperty('configuration', 'debug') … … 1040 1040 1041 1041 def test_skip(self): 1042 self.setupStep(CompileWebKit ToT())1042 self.setupStep(CompileWebKitWithoutPatch()) 1043 1043 self.setProperty('fullPlatform', 'ios-simulator-11') 1044 1044 self.setProperty('configuration', 'release') … … 1059 1059 previous_steps = [ 1060 1060 mock_step(CompileWebKit(), results=FAILURE), 1061 mock_step(CompileWebKit ToT(), results=SUCCESS),1061 mock_step(CompileWebKitWithoutPatch(), results=SUCCESS), 1062 1062 ] 1063 1063 self.setupStep(AnalyzeCompileWebKitResults(), previous_steps=previous_steps) … … 1072 1072 previous_steps = [ 1073 1073 mock_step(CompileWebKit(), results=FAILURE), 1074 mock_step(CompileWebKit ToT(), results=SUCCESS),1074 mock_step(CompileWebKitWithoutPatch(), results=SUCCESS), 1075 1075 ] 1076 1076 self.setupStep(AnalyzeCompileWebKitResults(), previous_steps=previous_steps) … … 1086 1086 previous_steps = [ 1087 1087 mock_step(CompileWebKit(), results=FAILURE), 1088 mock_step(CompileWebKit ToT(), results=FAILURE),1088 mock_step(CompileWebKitWithoutPatch(), results=FAILURE), 1089 1089 ] 1090 1090 self.setupStep(AnalyzeCompileWebKitResults(), previous_steps=previous_steps) -
trunk/Tools/ChangeLog
r259772 r259787 1 2020-04-09 Aakash Jain <aakash_jain@apple.com> 2 3 [ews] rename CompileWebKitToT to CompileWebKitWithoutPatch 4 https://bugs.webkit.org/show_bug.cgi?id=210190 5 6 Reviewed by Alex Christensen. 7 8 * BuildSlaveSupport/ews-build/steps.py: Renamed CompileWebKitToT to CompileWebKitWithoutPatch. 9 (CompileWebKit.evaluateCommand): 10 (CompileWebKitWithoutPatch): 11 (AnalyzeCompileWebKitResults.start): 12 (ReRunWebKitTests.evaluateCommand): 13 (ReRunAPITests.evaluateCommand): 14 (CompileWebKitToT): Deleted. 15 (CompileWebKitToT.doStepIf): Deleted. 16 (CompileWebKitToT.hideStepIf): Deleted. 17 (CompileWebKitToT.evaluateCommand): Deleted. 18 * BuildSlaveSupport/ews-build/steps_unittest.py: Updated unit-tests accordingly. 19 1 20 2020-04-08 Alex Christensen <achristensen@webkit.org> 2 21
Note:
See TracChangeset
for help on using the changeset viewer.