Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 38a3fb4

Browse files
authored
🔀 Merge pull request (#79)
⬆️ Upgrade to 100.0.2
2 parents 861443f + 8699f1f commit 38a3fb4

File tree

4 files changed

+35
-2
lines changed

4 files changed

+35
-2
lines changed

configs/common/mozconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ ac_add_options --enable-update-channel=stable
33
ac_add_options --with-ccache=sccache
44
ac_add_options --without-wasm-sandboxed-libraries
55

6+
ac_add_options --with-app-basename="Pulse Browser"
67
ac_add_options --with-app-name=pulse-browser
78
export MOZ_USER_DIR="Pulse browser"
89
export MOZ_APP_VENDOR="Pulse browser"
@@ -11,6 +12,7 @@ export MOZ_APP_PROFILE=pulse-browser
1112
export MOZ_APP_DISPLAYNAME="Pulse browser"
1213
export MOZ_MACBUNDLE_ID=com.fushra.browser.desktop
1314
export MOZ_DISTRIBUTION_ID=com.fushra.browser.desktop
15+
export MAC_APP_NAME="Pulse browser"
1416

1517
# Speed up builds by disabling components we don't care about
1618
ac_add_options --disable-geckodriver

gluon

Submodule gluon updated from 1a5ec09 to 8d64fcc

gluon.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"binaryName": "pulse-browser",
66
"version": {
77
"product": "firefox",
8-
"version": "100.0.1",
8+
"version": "100.0.2",
99
"displayVersion": "1.0.0"
1010
},
1111
"buildOptions": {
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
diff --git a/python/mozboot/mozboot/osx.py b/python/mozboot/mozboot/osx.py
2+
index 8c8c478d2ef6bb7a0ba45a67cfb694d13fce3716..82ed833ea14db8de47e5aec9dd0f049e99b5973c 100644
3+
--- a/python/mozboot/mozboot/osx.py
4+
+++ b/python/mozboot/mozboot/osx.py
5+
@@ -284,16 +284,23 @@ class OSXBootstrapper(OSXAndroidBootstrapper, BaseBootstrapper):
6+
self.install_homebrew()
7+
8+
def ensure_clang_static_analysis_package(self):
9+
- from mozboot import static_analysis
10+
+ # NOTE: This function has been removed as it caused numerous problems
11+
+ # with the boostrap process for v100.0.2. May be fixed in the future,
12+
+ # so we can return it
13+
+ pass
14+
+ # from mozboot import static_analysis
15+
16+
- self.install_toolchain_static_analysis(static_analysis.MACOS_CLANG_TIDY)
17+
+ # self.install_toolchain_static_analysis(static_analysis.MACOS_CLANG_TIDY)
18+
19+
def ensure_sccache_packages(self):
20+
from mozboot import sccache
21+
22+
self.install_toolchain_artifact("sccache")
23+
self.install_toolchain_artifact(sccache.RUSTC_DIST_TOOLCHAIN, no_unpack=True)
24+
- self.install_toolchain_artifact(sccache.CLANG_DIST_TOOLCHAIN, no_unpack=True)
25+
+ # NOTE: This function has been removed as it caused numerous problems
26+
+ # with the boostrap process for v100.0.2. May be fixed in the future,
27+
+ # so we can return it
28+
+ # self.install_toolchain_artifact(sccache.CLANG_DIST_TOOLCHAIN, no_unpack=True)
29+
30+
def ensure_fix_stacks_packages(self):
31+
self.install_toolchain_artifact("fix-stacks")

0 commit comments

Comments
 (0)