Skip to content

Commit f1307e5

Browse files
committed
[bazel] Bump pinned firefox to 88b1 so we have CDP present
1 parent 43ab383 commit f1307e5

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

common/repositories.bzl

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ _versions = {
7373
# Versions found by visiting https://ftp.mozilla.org/pub/firefox/releases/
7474
"firefox": {
7575
"linux": {
76-
"url": "https://ftp.mozilla.org/pub/firefox/releases/85.0.2/linux-x86_64/en-US/firefox-85.0.2.tar.bz2",
77-
"sha256": "98763f4b1526811967d71e1bbb9552a9a3fd877321ecb497083b9e313b528c31",
76+
"url": "https://ftp.mozilla.org/pub/firefox/releases/88.0b1/linux-x86_64/en-US/firefox-88.0b1.tar.bz2",
77+
"sha256": "c488102470ad8972755329a72d1ae736a7b7d223cec5fa3057546af76f53cb74",
7878
},
7979
"mac": {
80-
"url": "https://ftp.mozilla.org/pub/firefox/releases/85.0.2/mac/en-US/Firefox%2085.0.2.dmg",
81-
"sha256": "c6a7f39bc0a3c9df99c6c31aa13cb9d6d89d606c8961cb1de5e4b279c2b30273",
80+
"url": "https://ftp.mozilla.org/pub/firefox/releases/88.0b1/mac/en-US/Firefox%2088.0b1.pkg",
81+
"sha256": "e027bb2bf4feb4e1b5baf685a629fc7727b290dfdd61b081115e0d96ac91f241",
8282
},
8383
"windows": {
8484
"url": None,
@@ -172,11 +172,14 @@ def _firefox():
172172
build_file_content = "exports_files([\"geckodriver\"])",
173173
)
174174

175-
dmg_archive(
175+
pkg_archive(
176176
name = "mac_firefox",
177177
url = _versions["firefox"]["mac"]["url"],
178178
sha256 = _versions["firefox"]["mac"]["sha256"],
179179
build_file_content = "exports_files([\"Firefox.app\"])",
180+
move = {
181+
"Firefox.tmp1.pkg/Payload/Firefox.app": "Firefox.app",
182+
}
180183
)
181184

182185
# TODO: figure out how to unpack the firefox exe on Windows

0 commit comments

Comments
 (0)