Skip to content

Commit

Permalink
Add unit testing to external CI
Browse files Browse the repository at this point in the history
This way the NoAPI flavour would be used to run unit tests for both
ARM64 and x64 architectures.
  • Loading branch information
svillar committed Jun 3, 2024
1 parent 5b8ae72 commit 69b6480
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,16 @@ jobs:
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,
]

0 comments on commit 69b6480

Please sign in to comment.