Upgrade Gecko version in the user agent for desktop mode #1162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI External | |
on: | |
workflow_dispatch: # Allow manual triggers | |
pull_request: | |
jobs: | |
build-external: | |
name: External Build | |
uses: ./.github/workflows/build.yml | |
with: | |
flavour: ${{ matrix.flavour }} | |
strategy: | |
fail-fast: false | |
matrix: | |
flavour: [ | |
assembleNoapiArm64GeckoGeneric, | |
assembleNoapiX64GeckoGeneric, | |
] | |
secrets: inherit | |
unit-tests: | |
name: Unit Tests | |
needs: [build-external] | |
uses: ./.github/workflows/build.yml | |
with: | |
flavour: ${{ matrix.flavour }} | |
strategy: | |
matrix: | |
flavour: [ | |
testNoapiArm64GeckoGenericDebugUnitTest, | |
testNoapiX64GeckoGenericReleaseUnitTest, | |
] |