Skip to content

Commit

Permalink
[ews] Do not try to download build product from master
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=271463

Reviewed by Jonathan Bedard.

We stopped uploading archives to build master in 273509@main. So, while downloading
archives, when download from s3 fails, there is no point in trying to fallback to
download from build master.

* Tools/CISupport/ews-build/steps.py:
(DownloadBuiltProduct):

Canonical link: https://commits.webkit.org/276539@main
  • Loading branch information
aj062 committed Mar 22, 2024
1 parent c125db2 commit 74c76a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tools/CISupport/ews-build/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -5140,7 +5140,8 @@ class DownloadBuiltProduct(shell.ShellCommand):
name = 'download-built-product'
description = ['downloading built product']
descriptionDone = ['Downloaded built product']
flunkOnFailure = False
haltOnFailure = True
flunkOnFailure = True

def getResultSummary(self):
if self.results not in [SUCCESS, SKIPPED]:
Expand Down

0 comments on commit 74c76a1

Please sign in to comment.