Skip to content

Commit

Permalink
Bug 1743744 [wpt PR 31802] - REVERT [Taskcluster] pin Chrome Dev to 9…
Browse files Browse the repository at this point in the history
…7.0.4692.20, a=testonly

Automatic update from web-platform-tests
REVERT [Taskcluster] pin Chrome Dev to 97.0.4692.20 (#31802)

98.0.4710.4 had crashes, but  98.0.4736.0 is out now. #31715
--

wpt-commits: e0b8270caedf180a311c0662310573396fdec6c6
wpt-pr: 31802
  • Loading branch information
arichiv authored and moz-wptsync-bot committed Dec 9, 2021
1 parent 0e20083 commit f1653b2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions testing/web-platform/tests/tools/ci/run_tc.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,8 @@ def install_certificates():


def install_chrome(channel):
deb_prefix = "https://dl.google.com/linux/direct/"
if channel in ("experimental", "dev"):
# Pinned since 98.0.4710.4 began crashing on startup.
# See https://github.com/web-platform-tests/wpt/issues/31714.
deb_archive = "google-chrome-unstable_97.0.4692.20-1_amd64.deb"
deb_prefix = "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/"
deb_archive = "google-chrome-unstable_current_amd64.deb"
elif channel == "beta":
deb_archive = "google-chrome-beta_current_amd64.deb"
elif channel == "stable":
Expand All @@ -154,7 +150,7 @@ def install_chrome(channel):
raise ValueError("Unrecognized release channel: %s" % channel)

dest = os.path.join("/tmp", deb_archive)
deb_url = deb_prefix + deb_archive
deb_url = "https://dl.google.com/linux/direct/%s" % deb_archive
with open(dest, "wb") as f:
get_download_to_descriptor(f, deb_url)

Expand Down

0 comments on commit f1653b2

Please sign in to comment.