gh-15144: Fixed installing updates does not updating registries (gh-15181)

This commit is contained in:
mr. m
2026-09-01 02:07:53 +02:00
committed by GitHub
parent 8b632c9b05
commit faafff667e
19 changed files with 277 additions and 40 deletions

View File

@@ -10,6 +10,11 @@ on:
required: true
type: boolean
default: false
disable-pgo:
description: "Build without PGO at all"
required: false
type: boolean
default: false
build-version:
description: "The version to build"
required: true
@@ -27,6 +32,14 @@ on:
required: true
type: boolean
default: false
force-candidate:
description: "Force building against the Firefox release candidate"
required: false
type: boolean
default: false
env:
SURFER_FORCE_CANDIDATE: ${{ inputs.force-candidate && '1' || '' }}
jobs:
mac-build:
@@ -140,13 +153,13 @@ jobs:
- name: Download artifact (if use profdata)
uses: actions/download-artifact@v4
if: ${{ !inputs.generate-pgo }}
if: ${{ !inputs.generate-pgo && !inputs.disable-pgo }}
with:
path: ~/artifact
name: macos-profdata-${{ matrix.arch }}
- name: Show artifact info
if: ${{ !inputs.generate-pgo }}
if: ${{ !inputs.generate-pgo && !inputs.disable-pgo }}
run: |
ls ~/artifact
ls ~/artifact/en-US.log
@@ -166,6 +179,9 @@ jobs:
if test ${{ inputs.generate-pgo }} = true; then
export ZEN_GA_GENERATE_PROFILE=1
fi
if test ${{ inputs.disable-pgo }} = true; then
export ZEN_GA_DISABLE_PGO=1
fi
if [[ -n ${{ inputs.MOZ_BUILD_DATE }} ]];then
export MOZ_BUILD_DATE=${{ inputs.MOZ_BUILD_DATE }}
fi