Skip to content

Commit

Permalink
[ews] Increase timeout for compiling webkit steps
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=269000

Reviewed by Jonathan Bedard.

* Tools/CISupport/ews-build/steps.py:
(CompileWebKit.__init__):
* Tools/CISupport/ews-build/steps_unittest.py:

Canonical link: https://commits.webkit.org/274297@main
  • Loading branch information
aj062 committed Feb 8, 2024
1 parent 2e6c189 commit 578b35f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Tools/CISupport/ews-build/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3138,7 +3138,7 @@ class CompileWebKit(shell.Compile, AddToLogMixin, ShellMixin):
def __init__(self, skipUpload=False, **kwargs):
self.skipUpload = skipUpload
self.cancelled_due_to_huge_logs = False
super().__init__(logEnviron=False, **kwargs)
super().__init__(timeout=60 * 60, logEnviron=False, **kwargs)

def doStepIf(self, step):
return not (self.getProperty('fast_commit_queue') and self.getProperty('buildername', '').lower() == 'commit-queue')
Expand Down
22 changes: 11 additions & 11 deletions Tools/CISupport/ews-build/steps_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ def test_success(self):
self.setProperty('configuration', 'release')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-webkit --release -hideShellScriptEnvironment WK_VALIDATE_DEPENDENCIES=YES --ios-simulator 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand All @@ -1254,7 +1254,7 @@ def test_success_architecture(self):
self.setProperty('architecture', 'x86_64 arm64')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-webkit --release --architecture "x86_64 arm64" -hideShellScriptEnvironment WK_VALIDATE_DEPENDENCIES=YES 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand All @@ -1270,7 +1270,7 @@ def test_success_gtk(self):
self.setProperty('configuration', 'release')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['perl', 'Tools/Scripts/build-webkit', '--release', '--prefix=/app/webkit/WebKitBuild/release/install', '--gtk'],
)
Expand All @@ -1286,7 +1286,7 @@ def test_success_wpe(self):
self.setProperty('configuration', 'release')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['perl', 'Tools/Scripts/build-webkit', '--release', '--wpe'],
)
Expand All @@ -1302,7 +1302,7 @@ def test_failure(self):
self.setProperty('configuration', 'debug')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-webkit --debug -hideShellScriptEnvironment WK_VALIDATE_DEPENDENCIES=YES 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand Down Expand Up @@ -1336,7 +1336,7 @@ def test_success(self):
self.setProperty('configuration', 'release')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-webkit --release -hideShellScriptEnvironment WK_VALIDATE_DEPENDENCIES=YES --ios-simulator 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand All @@ -1352,7 +1352,7 @@ def test_failure(self):
self.setProperty('configuration', 'debug')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-webkit --debug -hideShellScriptEnvironment WK_VALIDATE_DEPENDENCIES=YES 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand Down Expand Up @@ -1477,7 +1477,7 @@ def test_success(self):
self.setProperty('configuration', 'release')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-jsc --release WK_VALIDATE_DEPENDENCIES=YES 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand All @@ -1493,7 +1493,7 @@ def test_failure(self):
self.setProperty('configuration', 'debug')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['/bin/sh', '-c', 'perl Tools/Scripts/build-jsc --debug WK_VALIDATE_DEPENDENCIES=YES 2>&1 | perl Tools/Scripts/filter-build-webkit -logfile WebKitBuild/build-log.txt'],
)
Expand All @@ -1518,7 +1518,7 @@ def test_success(self):
self.setProperty('configuration', 'release')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['perl', 'Tools/Scripts/build-jsc', '--release'],
)
Expand All @@ -1533,7 +1533,7 @@ def test_failure(self):
self.setProperty('configuration', 'debug')
self.expectRemoteCommands(
ExpectShell(workdir='wkdir',
timeout=1200,
timeout=3600,
logEnviron=False,
command=['perl', 'Tools/Scripts/build-jsc', '--debug'],
)
Expand Down

0 comments on commit 578b35f

Please sign in to comment.