forked from ppy/osu
-
Notifications
You must be signed in to change notification settings - Fork 0
351 lines (310 loc) · 13.7 KB
/
Copy pathci.yml
File metadata and controls
351 lines (310 loc) · 13.7 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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
on: [push, pull_request]
name: Continuous Integration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
packages: read # to restore NuGet packages from GitHub Packages
security-events: write # for reporting InspectCode issues
jobs:
resource-budget-source:
name: Resource Budget (Source Overrides)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Optimize local override media
run: |
python3 scripts/optimize_resource_overrides.py \
--root osu.Game/Resources \
--config .github/resource-optimizer/config.json \
--report-file resource-budget/optimizer-report.json \
--summary-file resource-budget/optimizer-summary.md
- name: Run source override resource budget checks
run: |
python3 scripts/check_resource_budgets.py \
--mode source \
--source-root osu.Game/Resources \
--budget-file .github/resource-budgets/source-overrides.json \
--report-file resource-budget/source-report.json \
--summary-file resource-budget/source-summary.md
- name: Publish source optimization summary
if: ${{ !cancelled() }}
run: |
cat resource-budget/optimizer-summary.md >> "$GITHUB_STEP_SUMMARY"
echo "" >> "$GITHUB_STEP_SUMMARY"
cat resource-budget/source-summary.md >> "$GITHUB_STEP_SUMMARY"
- name: Upload source resource budget reports
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: resource-budget-source
path: resource-budget/*
inspect-code:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install .NET 10.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Authenticate to GitHub Packages
run: dotnet nuget update source winnerspiros-github --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- name: Restore Tools
run: dotnet tool restore
- name: Restore Packages
run: dotnet restore osu.Desktop.slnf
- name: Restore inspectcode cache
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/inspectcode
key: inspectcode-${{ hashFiles('.config/dotnet-tools.json', '.github/workflows/ci.yml', 'osu.sln*', 'osu*.slnf', '.editorconfig', '.globalconfig', 'CodeAnalysis/*', '**/*.csproj', '**/*.props') }}
- name: Dotnet code style
run: dotnet build -c Debug -warnaserror osu.Desktop.slnf -p:EnforceCodeStyleInBuild=true
- name: CodeFileSanity
run: |
# TODO: Add ignore filters and GitHub Workflow Command Reporting in CFS. That way we don't have to do this workaround.
# FIXME: Suppress warnings from templates project
exit_code=0
while read -r line; do
if [[ ! -z "$line" ]]; then
echo "::error::$line"
exit_code=1
fi
done <<< $(dotnet codefilesanity)
exit $exit_code
- name: InspectCode
uses: JetBrains/ReSharper-InspectCode@v0.13
with:
tool-version: 2026.1.0.1
# this is WTF tier but if you don't specify *both* of these the defaults assume `build: true`
build: false
no-build: true
solution: ./osu.Desktop.slnf
caches-home: inspectcode
verbosity: WARN
test:
name: Test
runs-on: ${{matrix.os.fullname}}
env:
OSU_EXECUTION_MODE: ${{matrix.threadingMode}}
strategy:
fail-fast: false
matrix:
os:
- { prettyname: Windows, fullname: windows-2025-vs2026 }
# macOS runner performance has gotten unbearably slow so let's turn them off temporarily.
# - { prettyname: macOS, fullname: macos-latest }
- { prettyname: Linux, fullname: ubuntu-latest }
threadingMode: ['MultiThreaded']
# Split tests into two parallel groups so Windows runners (which are ~2-3× slower than
# Linux) finish each group in ~60 min rather than timing out on the full suite at 120 min.
testSuite:
- name: game
dlls: >-
osu.Game.Tests/bin/Debug/**/osu.Game.Tests.dll
osu.Game.Tournament.Tests/bin/Debug/**/osu.Game.Tournament.Tests.dll
Templates/**/*.Tests/bin/Debug/**/*.Tests.dll
- name: rulesets
dlls: >-
osu.Game.Rulesets.Osu.Tests/bin/Debug/**/osu.Game.Rulesets.Osu.Tests.dll
osu.Game.Rulesets.Taiko.Tests/bin/Debug/**/osu.Game.Rulesets.Taiko.Tests.dll
osu.Game.Rulesets.Catch.Tests/bin/Debug/**/osu.Game.Rulesets.Catch.Tests.dll
osu.Game.Rulesets.Mania.Tests/bin/Debug/**/osu.Game.Rulesets.Mania.Tests.dll
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install .NET 10.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Authenticate to GitHub Packages
run: dotnet nuget update source winnerspiros-github --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- name: Compile
run: dotnet build -c Debug -warnaserror osu.Desktop.slnf
- name: Test
run: >
dotnet test
${{matrix.testSuite.dlls}}
--logger "trx;LogFileName=TestResults-${{matrix.os.prettyname}}-${{matrix.threadingMode}}-${{matrix.testSuite.name}}.trx"
--
NUnit.ConsoleOut=0
# Upload results even when the test step fails (non-cancellation failure still satisfies !cancelled()).
# https://docs.github.com/en/actions/reference/workflows-and-actions/expressions#cancelled
- name: Upload Test Results
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: osu-test-results-${{matrix.os.prettyname}}-${{matrix.threadingMode}}-${{matrix.testSuite.name}}
path: ${{github.workspace}}/TestResults/TestResults-${{matrix.os.prettyname}}-${{matrix.threadingMode}}-${{matrix.testSuite.name}}.trx
test-results:
name: Test results
runs-on: ubuntu-latest
# we want to wait for the `test` job to complete, but run regardless of whether it succeeds or fails
# https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#example-not-requiring-successful-dependent-jobs
if: ${{ !cancelled() }}
needs: test
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Download results
uses: actions/download-artifact@v8
with:
pattern: osu-test-results-*
merge-multiple: true
- name: Add test results summary to workflow run
uses: dorny/test-reporter@v3.0.0
with:
name: Results
path: "*.trx"
reporter: dotnet-trx
list-suites: 'failed'
list-tests: 'failed'
use-actions-summary: 'true'
build-only-android:
name: Build only (Android)
runs-on: windows-2025-vs2026
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup JDK 11
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 11
- name: Install .NET 10.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Authenticate to GitHub Packages
run: dotnet nuget update source winnerspiros-github --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- name: Install .NET workloads
run: dotnet workload install android
- name: Compile
run: dotnet build -c Debug osu.Android.slnf
build-only-ios:
name: Build only (iOS)
runs-on: macos-26
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install .NET 10.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Authenticate to GitHub Packages
run: dotnet nuget update source winnerspiros-github --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
# https://github.com/dotnet/macios/issues/19157
# https://github.com/actions/runner-images/issues/12758
- name: Use Xcode 26.5
run: |
# Pin to Xcode 26.5 — the .NET iOS workload (net10.0_26.5) requires exactly Xcode 26.5.
# Fix: MacOSX.sdk in Xcode 26.5 is a minimal stub. Replace it with a symlink to the
# real versioned SDK found across Xcode installs. Real SDKs have hundreds of headers;
# stubs have ≤1.
PREFERRED_XCODE="/Applications/Xcode_26.5.app"
REAL_SDK=""
REAL_XCODE=""
# Search ALL Xcode_26.x.app installs for versioned MacOSX[N].sdk.
# Validate by usr/include header count: stubs ≤1 file, real SDKs have hundreds.
for xapp in $(ls -d /Applications/Xcode_26.*.app 2>/dev/null | sort -rV); do
sdk_dir="$xapp/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs"
[ -d "$sdk_dir" ] || continue
for sdk in $(ls "$sdk_dir" 2>/dev/null | grep '^MacOSX[0-9].*\.sdk$' | sort -rV); do
cand="$sdk_dir/$sdk"
cand_real=$(python3 -c "import os, sys; print(os.path.realpath(sys.argv[1]))" "$cand" 2>/dev/null || echo "$cand")
# Skip candidates that resolve back to the unversioned MacOSX.sdk alias.
# Re-linking MacOSX.sdk to itself creates a broken self-referential symlink.
[ "$(basename "$cand_real")" = "MacOSX.sdk" ] && continue
hdr_count=$(ls "$cand_real/usr/include" 2>/dev/null | wc -l | tr -d ' ')
if [ "${hdr_count:-0}" -gt 5 ]; then
REAL_SDK="$cand_real"
REAL_XCODE="$xapp"
break 2
fi
done
done
# Fallback: CommandLineTools
if [ -z "$REAL_SDK" ]; then
for sdk in $(ls /Library/Developer/CommandLineTools/SDKs 2>/dev/null | grep '^MacOSX[0-9].*\.sdk$' | sort -rV); do
cand="/Library/Developer/CommandLineTools/SDKs/$sdk"
cand_real=$(python3 -c "import os, sys; print(os.path.realpath(sys.argv[1]))" "$cand" 2>/dev/null || echo "$cand")
[ "$(basename "$cand_real")" = "MacOSX.sdk" ] && continue
hdr_count=$(ls "$cand_real/usr/include" 2>/dev/null | wc -l | tr -d ' ')
if [ "${hdr_count:-0}" -gt 5 ]; then
REAL_SDK="$cand_real"
break
fi
done
fi
# Switch to preferred Xcode if it exists, otherwise the one that has the real SDK.
if [ -d "$PREFERRED_XCODE" ]; then
sudo xcode-select -switch "$PREFERRED_XCODE"
elif [ -n "$REAL_XCODE" ]; then
sudo xcode-select -switch "$REAL_XCODE"
echo "Note: Xcode_26.5.app not found; using $REAL_XCODE for xcode-select"
fi
# Replace stub MacOSX.sdk in the active Xcode with a symlink to the real versioned SDK.
if [ -n "$REAL_SDK" ]; then
ACTIVE_DEV="$(xcode-select -p)"
ACTIVE_SDKS_DIR="$ACTIVE_DEV/Platforms/MacOSX.platform/Developer/SDKs"
MACOS_SDK="$ACTIVE_SDKS_DIR/MacOSX.sdk"
# Resolve REAL_SDK to its canonical (symlink-free) path to prevent ELOOP errors.
REAL_SDK_CANON=$(python3 -c "import os, sys; print(os.path.realpath(sys.argv[1]))" "$REAL_SDK" 2>/dev/null || echo "$REAL_SDK")
if [ "$REAL_SDK_CANON" = "$MACOS_SDK" ]; then
echo "WARNING: resolved SDK points to active MacOSX.sdk alias; skipping relink to avoid self-referential symlink"
else
sudo rm -rf "$MACOS_SDK"
sudo ln -sfn "$REAL_SDK_CANON" "$MACOS_SDK"
echo "Created MacOSX.sdk symlink -> $REAL_SDK_CANON"
fi
else
echo "WARNING: no valid macOS SDK found; build may fail"
fi
- name: Install .NET Workloads
run: dotnet workload install ios
- name: Build
run: dotnet build -c Debug osu.iOS.slnf