Add an UA override for spatialfusion.io #1392
Workflow file for this run
This file contains hidden or 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, | |
| ] |