-
Notifications
You must be signed in to change notification settings - Fork 19
497 lines (442 loc) · 16.4 KB
/
release.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
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
name: Release
on:
push:
tags:
- '*'
defaults:
run:
shell: pwsh
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
generate-ci-config:
name: Generate CI Configuration
uses: './.github/workflows/ci-config.yml'
build-binaries:
name: Build Binaries
needs: [generate-ci-config]
uses: './.github/workflows/build.yml'
with:
matrix: ${{ needs.generate-ci-config.outputs.matrix }}
pack-engine-and-c4group: true
build-content:
name: Content
runs-on: windows-latest
needs: [generate-ci-config, build-binaries]
env:
C4GROUP: ../c4group.exe
LC_GROUPS: ${{ needs.generate-ci-config.outputs.groups }}
OBJVERSION: ${{ needs.generate-ci-config.outputs.objversion }}
OBJVERSIONNODOTS: ${{ needs.generate-ci-config.outputs.objversionnodots }}
VERSION: ${{ needs.generate-ci-config.outputs.buildversion }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
autobuild
- uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/content
path: content
- uses: actions/download-artifact@v4
with:
name: c4group-Windows-x64
- name: Create output directory
run: New-Item -Path content/output -ItemType Directory
- name: Pack groups & create updates
run: |
Set-Location content
../autobuild/MakeContentGroupsAndUpdateGroups.ps1 -OutDir output
- name: Publish content
uses: actions/upload-artifact@v4
with:
name: content
path: content/output/*.c4[dgf]
- name: Publish content updates
uses: actions/upload-artifact@v4
with:
name: content-updates
path: |
content/output/*.c4[dgf].c4u
!content/output/lc_${{ env.OBJVERSIONNODOTS }}.c4u
- name: Publish combined update
uses: actions/upload-artifact@v4
with:
name: lc_${{ env.OBJVERSIONNODOTS }}.c4u
path: content/output/lc_${{ env.OBJVERSIONNODOTS }}.c4u
build-system-graphics-updates:
name: "Update Groups: System.c4g & Graphics.c4g"
runs-on: windows-latest
needs: [generate-ci-config, build-binaries]
env:
C4GROUP: ./c4group.exe
LC_GROUPS: ${{ needs.generate-ci-config.outputs.groups }}
OBJVERSION: ${{ needs.generate-ci-config.outputs.objversion }}
VERSION: ${{ needs.generate-ci-config.outputs.buildversion }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
autobuild
- uses: actions/download-artifact@v4
with:
name: System.c4g
- uses: actions/download-artifact@v4
with:
name: Graphics.c4g
- uses: actions/download-artifact@v4
with:
name: c4group-Windows-x64
- name: Create output directory
run: New-Item -Path output -ItemType Directory
- name: Create System.c4g update group
run: autobuild/MakeEngineGroupUpdateGroups.ps1 -GroupPath System.c4g -OutDir output
- name: Create Graphics.c4g update group
run: autobuild/MakeEngineGroupUpdateGroups.ps1 -GroupPath Graphics.c4g -OutDir output
- name: Publish System.c4g.c4u
uses: actions/upload-artifact@v4
with:
name: System.c4g.c4u
path: output/System.c4g.c4u
- name: Publish Graphics.c4g.c4u
uses: actions/upload-artifact@v4
with:
name: Graphics.c4g.c4u
path: output/Graphics.c4g.c4u
pack-zips:
name: Pack ZIP Archives
runs-on: ${{ matrix.runner }}
needs: [generate-ci-config, build-content, build-system-graphics-updates]
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.generate-ci-config.outputs.matrix) }}
env:
OBJVERSION: ${{ needs.generate-ci-config.outputs.objversion }}
VERSION: ${{ needs.generate-ci-config.outputs.buildversion }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
autobuild
- uses: actions/download-artifact@v4
with:
name: clonk-${{ matrix.config-suffix }}
- uses: actions/download-artifact@v4
with:
name: c4group-${{ matrix.config-suffix }}
- uses: actions/download-artifact@v4
with:
pattern: '*.c4g'
merge-multiple: true
- uses: actions/download-artifact@v4
with:
name: content
- name: Create output directory
run: New-Item -Path output -ItemType Directory
- name: Create Engine Archive
run: |
cd output
New-Item -Path lc_${{ env.VERSION }}_${{ matrix.platform-suffix }} -ItemType Directory | Push-Location
Copy-Item -Path ../../clonk* -Destination . -Recurse
Copy-Item -Path ../../c4group* -Destination . -Recurse
Copy-Item -Path ../../* -Include @('System.c4g', 'Graphics.c4g') -Destination .
- name: Create Full Archive
run: |
cd output
New-Item -Path lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }} -ItemType Directory | Push-Location
Copy-Item -Path ../../clonk* -Destination . -Recurse
Copy-Item -Path ../../c4group* -Destination . -Recurse
Move-Item -Path ../../*.c4? -Destination .
- name: "Linux: Pack Engine As Tarball"
if: ${{ matrix.os == 'Linux' }}
run: |
cd output/lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}
chmod +x ./clonk ./c4group
tar czf ../lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz *
Pop-Location
- name: "Linux: Pack Full As Tarball"
if: ${{ matrix.os == 'Linux' }}
run: |
cd output/lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}
chmod +x ./clonk ./c4group
tar czf ../lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz *
- uses: actions/upload-artifact@v4
if: ${{ matrix.os != 'Linux' }}
with:
name: lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.zip
path: output/lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}
- uses: actions/upload-artifact@v4
if: ${{ matrix.os != 'Linux' }}
with:
name: lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.zip
path: output/lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}
- uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'Linux' }}
with:
name: lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz
path: output/lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz
- uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'Linux' }}
with:
name: lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz
path: output/lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz
build-combined-update-groups:
name: Build Combined Update Groups
runs-on: ${{ matrix.runner }}
needs: [generate-ci-config, build-content, build-system-graphics-updates]
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.generate-ci-config.outputs.matrix) }}
env:
C4GROUP: ${{ matrix.os == 'Windows' && './c4group.exe' || './c4group' }}
MAJOR_UPDATE: ${{ needs.generate-ci-config.outputs.major-update }}
OBJVERSION: ${{ needs.generate-ci-config.outputs.objversion }}
OBJVERSIONNODOTS: ${{ needs.generate-ci-config.outputs.objversionnodots }}
VERSION: ${{ needs.generate-ci-config.outputs.buildversion }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
autobuild
- uses: actions/download-artifact@v4
with:
name: clonk-${{ matrix.config-suffix }}
- uses: actions/download-artifact@v4
with:
name: c4group-${{ matrix.config-suffix }}
- uses: actions/download-artifact@v4
with:
pattern: '*.c4g.c4u'
merge-multiple: true
- uses: actions/download-artifact@v4
with:
name: lc_${{ env.OBJVERSIONNODOTS }}.c4u
- uses: actions/download-artifact@v4
with:
name: content-updates
- name: Set Executable Bit
if: ${{ matrix.os != 'Windows' }}
run: |
chmod +x ./clonk
chmod +x ./c4group
- name: Create output directory
run: New-Item -Path output -ItemType Directory
- name: Build Engine Update
run: autobuild/MakeEngineUpdateGroups.ps1 -PlatformSuffix ${{ matrix.platform-suffix }} -RequireVersion ${{ env.OBJVERSION }} -OutDir output
- name: Publish Engine Update
uses: actions/upload-artifact@v4
with:
name: lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.c4u
path: output/lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.c4u
- name: Build Combined Update
run: autobuild/MakeCombinedUpdateGroups.ps1 -PlatformSuffix ${{ matrix.platform-suffix }} -EngineUpdatePath output/lc_${{ env.VERSION }}_${{ matrix.platform-suffix }}.c4u -OutDir output
- name: Publish Combined Update
if: ${{ !env.MAJOR_UPDATE }}
uses: actions/upload-artifact@v4
with:
name: lc_${{ env.OBJVERSIONNODOTS }}_${{ env.VERSION }}_${{ matrix.platform-suffix }}.c4u
path: output/lc_${{ env.OBJVERSIONNODOTS }}_${{ env.VERSION }}_${{ matrix.platform-suffix }}.c4u
- name: Publish Combined Major Update
if: ${{ env.MAJOR_UPDATE }}
uses: actions/upload-artifact@v4
with:
name: lc_${{ env.OBJVERSIONNODOTS }}_${{ matrix.platform-suffix }}.c4u
path: output/lc_${{ env.OBJVERSIONNODOTS }}_${{ matrix.platform-suffix }}.c4u
build-setup:
name: Build Setup
runs-on: windows-latest
needs: [generate-ci-config, build-content, build-system-graphics-updates]
env:
C4GROUP: ./c4group.exe
MAJOR_UPDATE: ${{ needs.generate-ci-config.outputs.major-update }}
OBJVERSION: ${{ needs.generate-ci-config.outputs.objversion }}
OBJVERSIONNODOTS: ${{ needs.generate-ci-config.outputs.objversionnodots }}
VERSION: ${{ needs.generate-ci-config.outputs.buildversion }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
licenses
src/res
- uses: actions/download-artifact@v4
with:
name: clonk-Windows-x64
- uses: actions/download-artifact@v4
with:
name: c4group-Windows-x64
- uses: actions/download-artifact@v4
with:
name: clonk-Windows-x86
path: x86
- uses: actions/download-artifact@v4
with:
name: c4group-Windows-x86
path: x86
- uses: actions/download-artifact@v4
with:
pattern: '*.c4g'
merge-multiple: true
- uses: actions/download-artifact@v4
with:
name: content
- name: Move Licenses
run:
Move-Item -Path licenses/* -Include @('clonk_content_license.txt', 'clonk_trademark_license.txt') -Destination .
- name: Build Installer
uses: Minionguyjpro/Inno-Setup-Action@v1.2.2
with:
path: src/res/setup.iss
options: >
/DC4VERSION="${{ env.OBJVERSION }}"
/DC4XVERBUILD=${{ env.VERSION }}
/DC4SOURCEDIR=${{ github.workspace }}
- name: Publish Installer
uses: actions/upload-artifact@v4
with:
name: lc_setup_win.exe
path: Output/lc_setup_win.exe
publish-github:
name: Publish To GitHub Release
runs-on: ${{ matrix.runner }}
needs:
- generate-ci-config
- build-binaries
- build-content
- build-system-graphics-updates
- pack-zips
- build-combined-update-groups
- build-setup
strategy:
fail-fast: false
max-parallel: 1
matrix:
include: ${{ fromJson(needs.generate-ci-config.outputs.matrix) }}
steps:
- uses: actions/download-artifact@v4
if: ${{ matrix.os != 'Linux' }}
with:
name: LegacyClonk-${{ matrix.config-suffix }}.zip
- uses: actions/download-artifact@v4
if: ${{ matrix.os == 'Linux' }}
with:
name: LegacyClonk-${{ matrix.config-suffix }}.tar.gz
- uses: actions/download-artifact@v4
if: ${{ matrix.publish-groups }}
with:
name: System.c4g
- uses: actions/download-artifact@v4
if: ${{ matrix.publish-groups }}
with:
name: Graphics.c4g
- uses: actions/download-artifact@v4
if: ${{ matrix.publish-groups }}
with:
name: content
path: content
- uses: actions/download-artifact@v4
if: ${{ matrix.publish-groups }}
with:
name: lc_setup_win.exe
- name: Pack Content
if: ${{ matrix.publish-groups }}
run: |
[System.IO.Compression.ZipFile]::CreateFromDirectory("content", "content.zip")
- name: Publish Binaries
if: ${{ matrix.os != 'Linux' }}
uses: ncipollo/release-action@v1.11.2
with:
artifacts: LegacyClonk-${{ matrix.config-suffix }}.zip
allowUpdates: true
artifactErrorsFailBuild: true
replacesArtifacts: true
generateReleaseNotes: true
- name: Publish Binaries
if: ${{ matrix.os == 'Linux' }}
uses: ncipollo/release-action@v1.11.2
with:
artifacts: LegacyClonk-${{ matrix.config-suffix }}.tar.gz
allowUpdates: true
artifactErrorsFailBuild: true
replacesArtifacts: true
generateReleaseNotes: true
- name: Publish System.c4g
if: ${{ matrix.publish-groups }}
uses: ncipollo/release-action@v1.11.2
with:
artifacts: System.c4g
allowUpdates: true
artifactErrorsFailBuild: true
replacesArtifacts: true
generateReleaseNotes: true
- name: Publish Graphics.c4g
if: ${{ matrix.publish-groups }}
uses: ncipollo/release-action@v1.11.2
with:
artifacts: Graphics.c4g
allowUpdates: true
artifactErrorsFailBuild: true
replacesArtifacts: true
generateReleaseNotes: true
- name: Publish Content
if: ${{ matrix.publish-groups }}
uses: ncipollo/release-action@v1.11.2
with:
artifacts: content.zip
allowUpdates: true
artifactErrorsFailBuild: true
replacesArtifacts: true
generateReleaseNotes: true
- name: Publish Installer
if: ${{ matrix.publish-groups }}
uses: ncipollo/release-action@v1.11.2
with:
artifacts: lc_setup_win.exe
allowUpdates: true
artifactErrorsFailBuild: true
replacesArtifacts: true
generateReleaseNotes: true
publish-itch:
name: Publish To Itch.io
runs-on: ${{ matrix.runner }}
needs: [generate-ci-config, publish-github]
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.generate-ci-config.outputs.matrix-itch) }}
env:
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
MAJOR_UPDATE: ${{ needs.generate-ci-config.outputs.major-update }}
OBJVERSION: ${{ needs.generate-ci-config.outputs.objversion }}
OBJVERSIONNODOTS: ${{ needs.generate-ci-config.outputs.objversionnodots }}
VERSION: ${{ needs.generate-ci-config.outputs.buildversion }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
autobuild
- uses: actions/download-artifact@v4
if: ${{ matrix.os != 'Linux' }}
with:
name: lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.zip
path: lc_full
- uses: actions/download-artifact@v4
if: ${{ matrix.os == 'Linux' }}
with:
name: lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz
- name: "Linux: Uncompress Tarball"
if: ${{ matrix.os == 'Linux' }}
run: |
mkdir lc_full
cd lc_full
tar xzf ../lc_full_${{ env.VERSION }}_${{ matrix.platform-suffix }}.tar.gz
- name: Publish To Itch
run: >
autobuild/PublishToItch.ps1
-OS ${{ matrix.os }}
-Arch ${{ matrix.arch }}
-PlatformSuffix ${{ matrix.platform-suffix }}
-Manifest autobuild/itch/${{ matrix.itch-manifest }}.toml
-Tag ${{ github.ref_name }}