chore: Update mozconfig to disable profile generation and use cross profile for Windows builds

This commit is contained in:
Mauro Balades
2024-08-03 00:40:45 +02:00
parent 052774c5c3
commit 38e4a7150c
3 changed files with 10 additions and 8 deletions

View File

@@ -83,7 +83,11 @@ jobs:
- name: build Zen
env:
SURFER_COMPAT: ${{ matrix.arch == 'x64' }}
run: sh .github/workflows/src/alpha-build.sh
run: |
if test "${{ matrix.arch }}" = "x64"; then
export ZEN_DISABLE_LTO=1
fi
sh .github/workflows/src/alpha-build.sh
- name: Rebuild Zen if failed
if: failure()