-
Notifications
You must be signed in to change notification settings - Fork 22
411 lines (329 loc) · 12.8 KB
/
cibuild.yml
File metadata and controls
411 lines (329 loc) · 12.8 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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
name: Build
on:
push:
pull_request:
workflow_dispatch:
release:
types: [published]
jobs:
linux-build:
name: ${{ matrix.platform.display_name }} ${{ matrix.preset_build_type.display_name }}
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
platform:
- { display_name: 'Linux Native Libraries', os: ubuntu-24.04, preset_os: linux }
preset_build_type:
- { display_name: 'Debug', name: debug }
- { display_name: 'Release', name: release }
container:
image: 'registry.gitlab.steamos.cloud/steamrt/sniper/sdk:latest'
steps:
# Silence a git warning emitted from actions/checkout.
# For context: https://git-scm.com/docs/git-init#Documentation/git-init.txt---initial-branchbranch-name
- name: Set initial default branch name
run: git config --global init.defaultBranch master
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set ownership
run: |
# Fix for "detected dubious ownership in repository"
chown -R $(id -u):$(id -g) $PWD
- name: Set reusable strings
run: |
preset_name="${{ matrix.platform.preset_os }}-${{ matrix.preset_build_type.name }}"
workspace_dir="$GITHUB_WORKSPACE"
source_dir=${workspace_dir//\\//}/src
build_dir=${workspace_dir//\\//}/src/build/$preset_name
install_dir=$build_dir/install
echo "source_dir=$source_dir" >> "$GITHUB_ENV"
echo "build_dir=$build_dir" >> "$GITHUB_ENV"
echo "install_dir=$install_dir" >> "$GITHUB_ENV"
echo "preset_name=$preset_name" >> "$GITHUB_ENV"
- name: Git fetch tags
run: git fetch origin --tags --force
# Libraries
- name: CMake configure libraries build
working-directory: ${{ env.source_dir }}
run: >
cmake
--preset ${{ env.preset_name }}
-DCMAKE_INSTALL_PREFIX=${{ env.install_dir }}
-DNEO_CI_BUILD=ON
-DNEO_USE_CCACHE=OFF
-DNEO_COPY_LIBRARIES=OFF
-DNEO_USE_SEPARATE_BUILD_INFO=ON
-DNEO_INSTALL_LIBRARIES=ON
-DNEO_INSTALL_RESOURCES=OFF
- name: CMake libraries build
working-directory: ${{ env.source_dir }}
run: cmake --build --preset ${{ env.preset_name }} --parallel --verbose
- name: Install libraries
run: cmake --install ${{ env.build_dir }}
# Run unit tests
- name: CTest
working-directory: ${{ env.source_dir }}
env:
NEO_TEST_HIDE_PASS: "1"
run: ctest --test-dir build/${{ env.preset_name }}/tests/ --output-on-failure
# Dedicated library
- name: CMake reconfigure dedicated library build
working-directory: ${{ env.source_dir }}
run: >
cmake
--preset ${{ env.preset_name }}
-DNEO_DEDICATED=ON
-DNEO_GENERATE_GAMEDATA=ON
- name: CMake dedicated library build
working-directory: ${{ env.source_dir }}
run: cmake --build --preset ${{ env.preset_name }} --parallel --verbose
- name: Install dedicated library
run: cmake --install ${{ env.build_dir }}
# Artifacts
- name: Get artifact names
working-directory: ${{ env.install_dir }}
run: |
echo "libraries=$(find . -regex '\.\/neo-\w*-\w*-libraries-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "libraries_debuginfo=$(find . -regex '\.\/neo-\w*-\w*-libraries-debuginfo-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "dedicated=$(find . -regex '\.\/neo-\w*-\w*-dedicated-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "dedicated_debuginfo=$(find . -regex '\.\/neo-\w*-\w*-dedicated-debuginfo-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "gamedata=$(find . -regex '\.\/neo-\w*-\w*-gamedata' -printf '%f')" >> "$GITHUB_ENV"
- name: Upload libraries
uses: actions/upload-artifact@v4
with:
name: ${{ env.libraries }}
path: ${{ env.install_dir }}/${{ env.libraries }}
if-no-files-found: error
- name: Upload libraries debug information
uses: actions/upload-artifact@v4
with:
name: ${{ env.libraries_debuginfo }}
path: ${{ env.install_dir }}/${{ env.libraries_debuginfo }}
if-no-files-found: error
- name: Upload dedicated library
uses: actions/upload-artifact@v4
with:
name: ${{ env.dedicated }}
path: ${{ env.install_dir }}/${{ env.dedicated }}
if-no-files-found: error
- name: Upload dedicated library debug information
uses: actions/upload-artifact@v4
with:
name: ${{ env.dedicated_debuginfo }}
path: ${{ env.install_dir }}/${{ env.dedicated_debuginfo }}
if-no-files-found: error
- name: Upload SourceMod gamedata
if: ${{ matrix.preset_build_type.name == 'release' }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.gamedata }}
path: ${{ env.install_dir }}/${{ env.gamedata }}
if-no-files-found: error
windows-build:
name: ${{ matrix.platform.display_name }} ${{ matrix.preset_build_type.display_name }}
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
platform:
- { display_name: 'Windows Native Libraries', os: windows-2025, preset_os: windows }
preset_build_type:
- { display_name: 'Debug', name: debug }
- { display_name: 'Release', name: release }
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set reusable strings
run: |
preset_name="${{ matrix.platform.preset_os }}-${{ matrix.preset_build_type.name }}"
workspace_dir="${{ github.workspace }}"
source_dir=${workspace_dir//\\//}/src
build_dir=${workspace_dir//\\//}/src/build/$preset_name
install_dir=$build_dir/install
echo "source_dir=$source_dir" >> "$GITHUB_ENV"
echo "build_dir=$build_dir" >> "$GITHUB_ENV"
echo "install_dir=$install_dir" >> "$GITHUB_ENV"
echo "preset_name=$preset_name" >> "$GITHUB_ENV"
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
- name: Print PATH
run: |
echo "PATH: $PATH"
- name: Git fetch tags
run: git fetch origin --tags --force
# Libraries
- name: CMake configure libraries build
working-directory: ${{ env.source_dir }}
run: >
cmake
--preset ${{ env.preset_name }}
-DCMAKE_INSTALL_PREFIX=${{ env.install_dir }}
-DNEO_CI_BUILD=ON
-DNEO_USE_CCACHE=OFF
-DNEO_COPY_LIBRARIES=OFF
-DNEO_USE_SEPARATE_BUILD_INFO=ON
-DNEO_INSTALL_LIBRARIES=ON
-DNEO_INSTALL_RESOURCES=OFF
- name: CMake libraries build
working-directory: ${{ env.source_dir }}
run: cmake --build --preset ${{ env.preset_name }} --parallel --verbose
- name: Install libraries
run: cmake --install ${{ env.build_dir }}
# Run unit tests
- name: CTest
working-directory: ${{ env.source_dir }}
env:
NEO_TEST_HIDE_PASS: "1"
run: ctest --test-dir build/${{ env.preset_name }}/tests/ --output-on-failure
# Dedicated library
- name: CMake reconfigure dedicated library build
working-directory: ${{ env.source_dir }}
run: >
cmake
--preset ${{ env.preset_name }}
-DNEO_DEDICATED=ON
-DNEO_GENERATE_GAMEDATA=ON
- name: CMake dedicated library build
working-directory: ${{ env.source_dir }}
run: cmake --build --preset ${{ env.preset_name }} --parallel --verbose
- name: Install dedicated library
run: cmake --install ${{ env.build_dir }}
# Artifacts
- name: Get artifact names
working-directory: ${{ env.install_dir }}
run: |
echo "libraries=$(find . -regex '\.\/neo-\w*-\w*-libraries-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "libraries_debuginfo=$(find . -regex '\.\/neo-\w*-\w*-libraries-debuginfo-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "dedicated=$(find . -regex '\.\/neo-\w*-\w*-dedicated-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "dedicated_debuginfo=$(find . -regex '\.\/neo-\w*-\w*-dedicated-debuginfo-\w*-\w*' -printf '%f')" >> "$GITHUB_ENV"
echo "gamedata=$(find . -regex '\.\/neo-\w*-\w*-gamedata' -printf '%f')" >> "$GITHUB_ENV"
- name: Upload libraries
uses: actions/upload-artifact@v4
with:
name: ${{ env.libraries }}
path: ${{ env.install_dir }}/${{ env.libraries }}
if-no-files-found: error
- name: Upload libraries debug information
uses: actions/upload-artifact@v4
with:
name: ${{ env.libraries_debuginfo }}
path: ${{ env.install_dir }}/${{ env.libraries_debuginfo }}
if-no-files-found: error
- name: Upload dedicated library
uses: actions/upload-artifact@v4
with:
name: ${{ env.dedicated }}
path: ${{ env.install_dir }}/${{ env.dedicated }}
if-no-files-found: error
- name: Upload dedicated library debug information
uses: actions/upload-artifact@v4
with:
name: ${{ env.dedicated_debuginfo }}
path: ${{ env.install_dir }}/${{ env.dedicated_debuginfo }}
if-no-files-found: error
pack-resources:
name: Windows Native Resources
runs-on: windows-2025
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set reusable strings
run: |
workspace_dir="${{ github.workspace }}"
source_dir=${workspace_dir//\\//}/src
build_dir=${workspace_dir//\\//}/src/build/windows-release
install_dir=$build_dir/install
echo "source_dir=$source_dir" >> "$GITHUB_ENV"
echo "build_dir=$build_dir" >> "$GITHUB_ENV"
echo "install_dir=$install_dir" >> "$GITHUB_ENV"
- name: Git fetch tags
run: git fetch origin --tags --force
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
# Resources
- name: CMake configure resources build
working-directory: ${{ env.source_dir }}
run: >
cmake
--preset windows-release
-DCMAKE_INSTALL_PREFIX=${{ env.install_dir }}
-DNEO_USE_CCACHE=OFF
-DNEO_COPY_LIBRARIES=OFF
-DNEO_INSTALL_LIBRARIES=OFF
-DNEO_INSTALL_RESOURCES=ON
- name: Install resources
run: cmake --install ${{ env.build_dir }}
- name: Get artifact name
working-directory: ${{ env.install_dir }}
run: echo "resources=$(echo neo-*-*-resources)" >> "$GITHUB_ENV"
- name: Upload resources
uses: actions/upload-artifact@v4
with:
name: ${{ env.resources }}
path: ${{ env.install_dir }}/${{ env.resources }}
if-no-files-found: error
upload-latest-build:
name: Upload Latest Build
needs: [linux-build, windows-build, pack-resources]
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/master'
permissions:
contents: write
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
- name: Packing artifacts
run: 'parallel 7z a -t7z -m0=lzma -mx=9 "{}.7z" "./{}/*" ::: neo-*'
- name: Create & upload latest build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_INFO: ${{ github.repository }}
run: |
# Delete old "latest" (delete step always returns true so that even if there's no release, it still uploads)
gh release delete latest --cleanup-tag --yes --repo "$REPO_INFO" || true
# Create new "latest"
gh release create latest neo-*.7z --prerelease --title "Latest Master Build" --repo "$REPO_INFO"
upload-release:
name: Upload Release and update website
needs: [linux-build, windows-build, pack-resources]
runs-on: ubuntu-24.04
if: github.event_name == 'release' && github.event.action == 'published'
permissions:
contents: write
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
- name: Deleting every debug artifact
run: 'rm -r *-Debug'
- name: Packing artifacts
run: 'parallel 7z a -t7z -m0=lzma -mx=9 "{= s/neo-(.*)/neo-$GITHUB_REF_NAME-\1.7z/ =}" "./{}/*" ::: neo-*'
- name: Upload assets to a release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_INFO: ${{ github.repository }}
run: 'gh release upload "$GITHUB_REF_NAME" neo-*.7z --clobber --repo "$REPO_INFO"'
- name: Trigger NeotokyoRebuild.github.io to update
env:
NTRE_GH_SITE_PAT: ${{ secrets.NTRE_GH_SITE_PAT }}
run: |
curl -qs --fail-with-body -L -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $NTRE_GH_SITE_PAT" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/NeotokyoRebuild/NeotokyoRebuild.github.io/dispatches \
-d '{"event_type":"new-release"}'