-
Notifications
You must be signed in to change notification settings - Fork 0
265 lines (254 loc) · 9.27 KB
/
Copy pathDictionaryCoding.yml
File metadata and controls
265 lines (254 loc) · 9.27 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
name: DictionaryCoding
on:
push:
branches:
- main
tags:
- 'v[0-9]*.[0-9]*.[0-9]*'
paths-ignore:
- '**.md'
- 'Docs/**'
- 'LICENSE'
- '.github/ISSUE_TEMPLATE/**'
pull_request:
branches:
- main
- 'v[0-9]*.[0-9]*.[0-9]*'
paths-ignore:
- '**.md'
- 'Docs/**'
- 'LICENSE'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
env:
PACKAGE_NAME: DictionaryCoding
jobs:
configure:
name: Configure Build Matrix
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip') }}
outputs:
full-matrix: ${{ steps.set-matrix.outputs.full-matrix }}
ubuntu-os: ${{ steps.set-matrix.outputs.ubuntu-os }}
ubuntu-swift: ${{ steps.set-matrix.outputs.ubuntu-swift }}
ubuntu-type: ${{ steps.set-matrix.outputs.ubuntu-type }}
steps:
- name: Determine build matrix
id: set-matrix
run: |
# DictionaryCoding's Package.swift declares swift-tools-version 6.3, so every leg
# must use a Swift 6.3-or-newer toolchain — older toolchains cannot parse the manifest.
FULL=false
REF="${{ github.ref }}"
EVENT="${{ github.event_name }}"
BASE_REF="${{ github.base_ref }}"
# Full matrix on main, on semver branches (v1.0.0, 1.2.3-alpha.1, etc.),
# and on PRs targeting either.
if [[ "$REF" == "refs/heads/main" ]]; then
FULL=true
elif [[ "$REF" =~ ^refs/heads/v?[0-9]+\.[0-9]+\.[0-9]+ ]]; then
FULL=true
elif [[ "$EVENT" == "pull_request" ]]; then
if [[ "$BASE_REF" == "main" || "$BASE_REF" =~ ^v?[0-9]+\.[0-9]+\.[0-9]+ ]]; then
FULL=true
fi
fi
if [[ "$FULL" == "true" ]]; then
{
echo "full-matrix=true"
echo 'ubuntu-os=["noble"]'
echo 'ubuntu-swift=[{"version":"6.3"},{"version":"6.4.x","nightly":true}]'
echo 'ubuntu-type=["","wasm","wasm-embedded"]'
} >> "$GITHUB_OUTPUT"
else
{
echo "full-matrix=false"
echo 'ubuntu-os=["noble"]'
echo 'ubuntu-swift=[{"version":"6.3"}]'
echo 'ubuntu-type=[""]'
} >> "$GITHUB_OUTPUT"
fi
echo "Full matrix: $FULL (ref=$REF, event=$EVENT, base_ref=$BASE_REF)"
build-ubuntu:
name: Build on Ubuntu
needs: [configure]
runs-on: ubuntu-latest
container: ${{ matrix.swift.nightly && format('swiftlang/swift:nightly-{0}-{1}', matrix.swift.version, matrix.os) || format('swift:{0}-{1}', matrix.swift.version, matrix.os) }}
strategy:
fail-fast: false
matrix:
os: ${{ fromJSON(needs.configure.outputs.ubuntu-os) }}
swift: ${{ fromJSON(needs.configure.outputs.ubuntu-swift) }}
type: ${{ fromJSON(needs.configure.outputs.ubuntu-type) }}
exclude:
# Nightly toolchains skip the wasm legs — nightly WASI SDKs may be unavailable.
- swift: { version: "6.4.x", nightly: true }
type: "wasm"
- swift: { version: "6.4.x", nightly: true }
type: "wasm-embedded"
steps:
- uses: actions/checkout@v6
- uses: brightdigit/swift-build@v1
id: build
with:
type: ${{ matrix.type }}
wasmtime-version: "40.0.2"
wasm-swift-flags: >-
-Xcc -D_WASI_EMULATED_SIGNAL
-Xcc -D_WASI_EMULATED_MMAN
-Xlinker -lwasi-emulated-signal
-Xlinker -lwasi-emulated-mman
- name: Install curl
if: steps.build.outputs.contains-code-coverage == 'true'
run: |
apt-get update -q
apt-get install -y curl
- uses: sersoft-gmbh/swift-coverage-action@v5
id: coverage-files
if: steps.build.outputs.contains-code-coverage == 'true'
with:
fail-on-empty-output: true
- name: Upload coverage to Codecov
if: steps.build.outputs.contains-code-coverage == 'true'
uses: codecov/codecov-action@v6
with:
fail_ci_if_error: true
flags: swift-${{ matrix.swift.version }}-${{ matrix.os }}${{ matrix.swift.nightly && '-nightly' || '' }}
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ join(fromJSON(steps.coverage-files.outputs.files), ',') }}
build-windows:
name: Build on Windows
needs: [configure]
runs-on: windows-2025
if: ${{ needs.configure.outputs.full-matrix == 'true' && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }}
steps:
- uses: actions/checkout@v6
- uses: brightdigit/swift-build@v1
id: build
with:
windows-swift-version: swift-6.3-release
windows-swift-build: 6.3-RELEASE
- name: Upload coverage to Codecov
if: steps.build.outputs.contains-code-coverage == 'true'
uses: codecov/codecov-action@v6
with:
fail_ci_if_error: true
flags: swift-6.3,windows
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
os: windows
swift_project: DictionaryCoding
build-android:
name: Build on Android
needs: [configure]
runs-on: ubuntu-latest
if: ${{ needs.configure.outputs.full-matrix == 'true' && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }}
steps:
- uses: actions/checkout@v6
- name: Free disk space
uses: jlumbroso/free-disk-space@v1.3.1
with:
tool-cache: false
android: false
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- uses: brightdigit/swift-build@v1
with:
type: android
android-swift-version: "6.3"
android-api-level: 34
android-run-tests: true
# Note: Code coverage is not supported on Android builds
# The Swift Android SDK does not include LLVM coverage tools (llvm-profdata, llvm-cov)
build-macos:
name: Build on macOS
needs: [configure]
runs-on: macos-26
if: ${{ !cancelled() && needs.configure.result == 'success' }}
steps:
- uses: actions/checkout@v6
- name: Build and Test
id: build
uses: brightdigit/swift-build@v1
with:
xcode: "/Applications/Xcode_26.5.app"
- name: Process Coverage
if: steps.build.outputs.contains-code-coverage == 'true'
uses: sersoft-gmbh/swift-coverage-action@v5
- name: Upload Coverage
if: steps.build.outputs.contains-code-coverage == 'true'
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: spm
build-macos-full:
name: Build on macOS (Full)
needs: [configure]
if: ${{ !cancelled() && needs.configure.result == 'success' && needs.configure.outputs.full-matrix == 'true' }}
runs-on: macos-26
strategy:
matrix:
include:
- type: macos
xcode: "/Applications/Xcode_26.5.app"
- type: ios
xcode: "/Applications/Xcode_26.5.app"
deviceName: "iPhone 17 Pro"
osVersion: "26.5"
download-platform: true
- type: watchos
xcode: "/Applications/Xcode_26.5.app"
deviceName: "Apple Watch Ultra 3 (49mm)"
osVersion: "26.5"
download-platform: true
- type: tvos
xcode: "/Applications/Xcode_26.5.app"
deviceName: "Apple TV"
osVersion: "26.5"
download-platform: true
- type: visionos
xcode: "/Applications/Xcode_26.5.app"
deviceName: "Apple Vision Pro"
osVersion: "26.5"
download-platform: true
steps:
- uses: actions/checkout@v6
- name: Build and Test
id: build
uses: brightdigit/swift-build@v1
with:
type: ${{ matrix.type }}
xcode: ${{ matrix.xcode }}
deviceName: ${{ matrix.deviceName }}
osVersion: ${{ matrix.osVersion }}
download-platform: ${{ matrix.download-platform }}
- name: Process Coverage
if: steps.build.outputs.contains-code-coverage == 'true'
uses: sersoft-gmbh/swift-coverage-action@v5
- name: Upload Coverage
if: steps.build.outputs.contains-code-coverage == 'true'
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.type && format('{0}{1}', matrix.type, matrix.osVersion) || 'spm' }}
lint:
name: Linting
# build-macos-full is skipped on feature branches; !failure() lets this job proceed
# past skipped (not failed) dependencies.
if: ${{ !cancelled() && !failure() && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }}
runs-on: ubuntu-latest
needs: [build-ubuntu, build-macos, build-macos-full, build-windows, build-android]
steps:
- uses: actions/checkout@v6
- uses: jdx/mise-action@v4
with:
cache: true
- name: Lint
run: ./Scripts/lint.sh
env:
LINT_MODE: STRICT