-
-
Notifications
You must be signed in to change notification settings - Fork 7
141 lines (117 loc) · 4.04 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: Tests
on:
push:
pull_request:
branches:
- "**:**" # PRs from forks have a prefix with `owner:`
jobs:
swiftpm_tests:
name: SwiftPM on Xcode ${{ matrix.xcode }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
xcode:
- "12.5.1"
- "13.2.1"
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.xcode }}.app
- name: SwiftPM tests
run: swift test --enable-code-coverage
- name: Convert coverage for Codecov
id: convert-coverage
uses: sersoft-gmbh/[email protected]
with:
ignore-conversion-failures: true
fail-on-empty-output: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ${{ join(fromJSON(steps.convert-coverage.outputs.files), ',') }}
fail_ci_if_error: true
xcode_tests:
name: ${{ matrix.platform }} on Xcode ${{ matrix.xcode }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
xcode:
- "12.5.1"
- "13.2.1"
platform: ["iOS", "tvOS", "macOS"]
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.xcode }}.app
- name: Install Mint
run: brew install mint
- name: Cache Mint
uses: actions/cache@v3
with:
path: ~/.mint
key: ${{ runner.os }}-mint-xcode_${{ matrix.xcode }}-${{ hashFiles('**/Mintfile') }}
restore-keys: |
${{ runner.os }}-mint-xcode_${{ matrix.xcode }}
- run: mint bootstrap
- name: Cache Carthage
uses: actions/cache@v3
with:
path: Carthage
key: ${{ runner.os }}-carthage-xcode_${{ matrix.xcode }}-${{ matrix.platform }}-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-xcode_${{ matrix.xcode }}-${{ matrix.platform }}-
${{ runner.os }}-carthage-xcode_${{ matrix.xcode }}-
- name: carthage bootstrap
run: carthage bootstrap --use-xcframeworks --cache-builds --platform ${{ matrix.platform }} --configuration Debug
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test ${{ matrix.platform }}
run: |
set -e -o pipefail
mint run xcutils test ${{ matrix.platform }} --scheme "Partial-${{ matrix.platform }}" --enable-code-coverage | $(mint which xcbeautify)
- name: Convert coverage for Codecov
id: convert-coverage
uses: sersoft-gmbh/[email protected]
with:
ignore-conversion-failures: true
fail-on-empty-output: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ${{ join(fromJSON(steps.convert-coverage.outputs.files), ',') }}
fail_ci_if_error: true
carthage_build:
name: Carthage Build on Xcode ${{ matrix.xcode }}
runs-on: macos-latest
strategy:
matrix:
xcode:
- "13.2"
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.xcode }}.app
- name: carthage build
run: carthage build --no-skip-current --use-xcframeworks --platform iOS,macOS,tvOS,watchOS
linux_tests:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
container:
image: swift:${{ matrix.swift }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
swift: ["5.2", "5.3", "5.4", "5.5"]
steps:
- uses: actions/checkout@v3
- name: swift test
run: swift test
tests_pass:
name: Tests pass
runs-on: ubuntu-latest
needs: [swiftpm_tests, xcode_tests, carthage_build, linux_tests]
steps:
- run: echo "Tests have passed"