-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.4 KB
/
unit_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Unit Tests
on:
pull_request:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: 'macos-15'
timeout-minutes: 15
env:
SCHEME: "BlackBoxFirebasePerformance"
strategy:
matrix:
DESTINATION: ["platform=iOS Simulator,name=iPhone 16", "platform=tvOS Simulator,name=Apple TV"]
steps:
- name: Get source code
uses: actions/checkout@v4
- name: Prepare Environment for App Build
uses: ./.github/actions/prepare_env_app_build
- name: Resolve Dependencies
run: xcodebuild -resolvePackageDependencies
- name: Build
run: >
xcodebuild build-for-testing
-scheme ${{ env.SCHEME }}
-destination '${{ matrix.DESTINATION }}'
-quiet
- name: Test
run: >
xcodebuild test-without-building
-scheme ${{ env.SCHEME }}
-destination '${{ matrix.DESTINATION }}'
-quiet
# This allows us to have a branch protection rule for tests and deploys with matrix
status-for-matrix:
runs-on: 'ubuntu-latest'
needs: tests
if: always()
steps:
- name: Calculate matrix result
run: |
result="${{ needs.tests.result }}"
if [[ $result == "success" ]]; then
exit 0
else
exit 1
fi