-
Notifications
You must be signed in to change notification settings - Fork 97
653 lines (556 loc) · 19.8 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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
name: "Release Builds"
on:
push:
branches:
- v[0-9].[0-9]**
tags:
- v[0-9].[0-9]**
- v[0-9].[0-9]**-**
workflow_dispatch:
inputs:
custom-ref:
required: false
description: "Build release from git-ref:"
release-tag:
required: false
description: "Publish release to tag:"
developer:
default: false
type: boolean
description: "Developer build"
linux-x64:
default: true
type: boolean
macos-x64-arm64:
default: true
type: boolean
windows-x64:
default: true
type: boolean
windows-x86:
default: true
type: boolean
emscripten:
default: true
type: boolean
switch:
default: true
type: boolean
schedule:
# run every Wednesday at 8AM EST
- cron: '0 8 * * 3'
env:
REF: ${{ github.event.inputs.custom-ref || github.ref || 'master' }}
MESON_VERSION: '0.63.3'
EM_VERSION: '3.1.51'
PYTHON_VERSION: '3.11.8'
EM_CACHE_FOLDER: 'emsdk'
TAISEI_NOPRELOAD: 0
TAISEI_PRELOAD_REQUIRED: 1
GH_TOKEN: ${{ github.token }}
jobs:
setup-release:
name: "Setup release"
if: ${{ github.event.inputs.release-tag }}
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
ref: ${{ env.REF }}
- name: Create release draft
run: |
if gh release view "${{ github.event.inputs.release-tag }}" &>/dev/null; then
echo "Release ${{ github.event.inputs.release-tag }}" already exists
else
gh release create --draft "${{ github.event.inputs.release-tag }}"
fi
linux-release-build-x64:
name: "Linux (x64/Source)"
if: ${{ (github.event.inputs.linux-x64 || 'true') == 'true' }}
runs-on: ubuntu-20.04
steps:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Tools
run: >
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update || true # debian cache is not atomic and can sometimes fail
sudo apt install -y -qq
build-essential
libsdl2-dev
libx11-dev
libwayland-dev
python3-docutils
gnupg
gcc-10
g++-10
sudo update-alternatives --install
/usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave
/usr/bin/g++ g++ /usr/bin/g++-10
pip install
meson==${{ env.MESON_VERSION }}
ninja
zstandard
python-gnupg
- name: Import GPG Key
uses: taisei-project/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
# NOTE: 'fetch-depth: 0' == "get all history", not "no history"
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
ref: ${{ env.REF }}
- name: Configure
run: >
git config --global --add safe.directory $(pwd)
git fetch --force --tags # see: https://github.com/actions/checkout/issues/290
meson setup build/linux
--native-file misc/ci/common-options.ini
--native-file misc/ci/forcefallback.ini
--native-file misc/ci/linux-x86_64-build-release.ini
--prefix=$(pwd)/build-release
-Ddeveloper=${{ github.event.inputs.developer || 'false' }}
- name: Set Package Version
run: |
echo BUILD_VERSION=$($(pwd)/scripts/version.py) >> $GITHUB_ENV
shell: bash
- name: Build
run: |
echo "Version set to ${{ env.BUILD_VERSION }}" # needs to be here as GITHUB_ENV doesn't update until the next step: https://github.com/github/docs/issues/7892
meson compile -C build/linux --verbose
meson install -C build/linux
- name: Unwanted Library Check
run: $(pwd)/scripts/smoke-test-standalone-linux-exe.py $(pwd)/build-release/taisei
- name: Run Test
run: $(pwd)/build-release/taisei -R $(pwd)/misc/ci/tests/test-replay.tsr
env:
TAISEI_NOPRELOAD: ${{ env.TAISEI_NOPRELOAD }}
TAISEI_PRELOAD_REQUIRED: ${{ env.TAISEI_PRELOAD_REQUIRED }}
- name: Package (Binary)
run: |
ninja txz -C build/linux --verbose
scripts/sign-release.py build/linux/Taisei-${{ env.BUILD_VERSION }}-linux-x86_64.tar.xz
- name: Upload Artifact (Binary)
uses: actions/upload-artifact@v4
if: success()
with:
name: linux-x86_64-${{ env.BUILD_VERSION }}-txz
path: build/linux/Taisei-${{ env.BUILD_VERSION }}-linux-x86_64.tar.xz*
if-no-files-found: error
- name: Package (Source)
run: |
meson dist -C build/linux --no-tests # disable test build, since we already know it compiles
scripts/sign-release.py build/linux/meson-dist/taisei-${{ env.BUILD_VERSION }}.tar.xz
- name: Upload Artifact (Source)
uses: actions/upload-artifact@v4
if: success()
with:
name: source-${{ env.BUILD_VERSION }}-txz
path: build/linux/meson-dist/taisei-${{ env.BUILD_VERSION }}.tar.xz*
if-no-files-found: error
- name: Upload Release Artifacts
if: ${{ github.event.inputs.release-tag }}
run: >
gh release upload "${{ github.event.inputs.release-tag }}"
build/linux/meson-dist/taisei-${{ env.BUILD_VERSION }}.tar.xz*
build/linux/Taisei-${{ env.BUILD_VERSION }}-linux-x86_64.tar.xz*
- name: Upload Log
if: always()
uses: actions/upload-artifact@v4
with:
name: taisei_x64_linux_release_log
path: build/linux/meson-logs/meson-log.txt
if-no-files-found: warn
macos-release-build-universal:
name: macOS (Universal)
if: ${{ (github.event.inputs.macos-x64-arm64 || 'true') == 'true' }}
runs-on: macos-12
steps:
- name: Install Tools
run: >
brew install
create-dmg
docutils
pygments
pip3 install
meson==${{ env.MESON_VERSION }}
ninja
python-gnupg
setuptools
zstandard
shell: bash
- name: Import GPG Key
uses: taisei-project/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
ref: ${{ env.REF }}
- name: Configure
run: |
git config --global --add safe.directory $(pwd)
git fetch --force --tags
$(pwd)/scripts/macos_configure_env.sh $(pwd)/build-release/ $(pwd)
$(pwd)/scripts/macos_setup_universal.sh -Ddeveloper=${{ github.event.inputs.developer || 'false' }}
shell: bash
- name: Set Package Version
run: |
echo BUILD_VERSION=$($(pwd)/scripts/version.py) >> $GITHUB_ENV
shell: bash
- name: Build
run: |
echo "Version set to ${{ env.BUILD_VERSION }}"
$(pwd)/scripts/macos_build_universal.sh ${{ env.BUILD_VERSION }}
shell: bash
- name: Sign Release
run: |
scripts/sign-release.py build-release/compiled/Taisei-${{ env.BUILD_VERSION }}-universal.dmg
shell: bash
- name: Run Test
run: $(pwd)/build-release/compiled/combined/Taisei.app/Contents/MacOS/Taisei -R $(pwd)/misc/ci/tests/test-replay.tsr
env:
TAISEI_NOPRELOAD: ${{ env.TAISEI_NOPRELOAD }}
TAISEI_PRELOAD_REQUIRED: ${{ env.TAISEI_PRELOAD_REQUIRED }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
if: success()
with:
name: macos-universal-${{ env.BUILD_VERSION }}-dmg
path: build-release/compiled/Taisei-${{ env.BUILD_VERSION }}-universal.dmg*
if-no-files-found: error
- name: Upload Release Artifacts
if: ${{ github.event.inputs.release-tag }}
run: >
gh release upload "${{ github.event.inputs.release-tag }}"
build-release/compiled/Taisei-${{ env.BUILD_VERSION }}-universal.dmg*
- name: Upload Log
if: always()
uses: actions/upload-artifact@v4
with:
name: taisei_macos_universal_release_log
path: build-release/*/meson-logs/meson-log.txt
if-no-files-found: warn
windows-release-build-x64:
name: Windows (x64)
if: ${{ (github.event.inputs.windows-x64 || 'true') == 'true' }}
runs-on: ubuntu-latest
container: taiseiproject/windows-toolkit:20240304
steps:
- name: Import GPG Key
uses: taisei-project/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
ref: ${{ env.REF }}
- name: Checkout ANGLE DLLs
uses: actions/checkout@v4
with:
repository: taisei-project/angle-compiled
path: angle-compiled
- name: Configure
run: >
git config --global --add safe.directory $(pwd)
git fetch --force --tags
meson setup build/windows
-Dangle_libegl=$(pwd)/angle-compiled/lib/Windows-x64-dll/libEGL.dll
-Dangle_libgles=$(pwd)/angle-compiled/lib/Windows-x64-dll/libGLESv2.dll
--cross-file misc/ci/common-options.ini
--cross-file misc/ci/forcefallback.ini
--cross-file misc/ci/windows-llvm_mingw-x86_64-build-release.ini
--prefix=$(pwd)/build-release
-Ddeveloper=${{ github.event.inputs.developer || 'false' }}
- name: Set Package Version
run: |
echo BUILD_VERSION=$($(pwd)/scripts/version.py) >> $GITHUB_ENV
shell: bash
- name: Build
run: |
echo "Version set to ${{ env.BUILD_VERSION }}"
meson compile -C build/windows
- name: Package (EXE)
run: |
ninja nsis -C build/windows --verbose
scripts/sign-release.py build/windows/Taisei-${{ env.BUILD_VERSION }}-setup-x86_64.exe
- name: Upload Artifact (EXE)
uses: actions/upload-artifact@v4
if: success()
with:
name: windows-x86_64-${{ env.BUILD_VERSION }}-setup-exe
path: build/windows/Taisei-${{ env.BUILD_VERSION }}-setup-x86_64.exe*
if-no-files-found: error
- name: Package (ZIP)
run: |
ninja zip -C build/windows --verbose
scripts/sign-release.py build/windows/Taisei-${{ env.BUILD_VERSION }}-windows-x86_64.zip
- name: Upload Artifact (ZIP)
uses: actions/upload-artifact@v4
if: success()
with:
name: windows-x86_64-${{ env.BUILD_VERSION }}-zip
path: build/windows/Taisei-${{ env.BUILD_VERSION }}-windows-x86_64.zip*
if-no-files-found: error
- name: Upload Release Artifacts
if: ${{ github.event.inputs.release-tag }}
run: >
gh release upload "${{ github.event.inputs.release-tag }}"
build/windows/Taisei-${{ env.BUILD_VERSION }}-setup-x86_64.exe*
build/windows/Taisei-${{ env.BUILD_VERSION }}-windows-x86_64.zip*
- name: Upload Log
if: always()
uses: actions/upload-artifact@v4
with:
name: taisei_windows_x64_release_log
path: build/windows/meson-logs/meson-log.txt
if-no-files-found: warn
windows-release-build-x86:
name: Windows (x86)
if: ${{ (github.event.inputs.windows-x86 || 'true') == 'true' }}
runs-on: ubuntu-latest
container: taiseiproject/windows-toolkit:20240304
steps:
- name: Import GPG Key
uses: taisei-project/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
ref: ${{ env.REF }}
- name: Checkout ANGLE DLLs
uses: actions/checkout@v4
with:
repository: taisei-project/angle-compiled
path: angle-compiled
- name: Configure
run: >
git config --global --add safe.directory $(pwd)
git fetch --force --tags
meson setup build/windows
-Dangle_libegl=$(pwd)/angle-compiled/lib/Windows-x86-dll/libEGL.dll
-Dangle_libgles=$(pwd)/angle-compiled/lib/Windows-x86-dll/libGLESv2.dll
--cross-file misc/ci/common-options.ini
--cross-file misc/ci/forcefallback.ini
--cross-file misc/ci/windows-llvm_mingw-x86-build-release.ini
--prefix=$(pwd)/build-release
-Ddeveloper=${{ github.event.inputs.developer || 'false' }}
- name: Set Package Version
run: |
echo BUILD_VERSION=$($(pwd)/scripts/version.py) >> $GITHUB_ENV
shell: bash
- name: Build
run: |
echo "Version set to ${{ env.BUILD_VERSION }}"
meson compile -C build/windows
- name: Package (EXE)
run: |
ninja nsis -C build/windows --verbose
scripts/sign-release.py build/windows/Taisei-${{ env.BUILD_VERSION }}-setup-x86.exe
- name: Upload Artifact (EXE)
uses: actions/upload-artifact@v4
if: success()
with:
name: windows-x86-${{ env.BUILD_VERSION }}-setup-exe
path: build/windows/Taisei-${{ env.BUILD_VERSION }}-setup-x86.exe*
if-no-files-found: error
- name: Package (ZIP)
run: |
ninja zip -C build/windows --verbose
scripts/sign-release.py build/windows/Taisei-${{ env.BUILD_VERSION }}-windows-x86.zip
- name: Upload Artifact (ZIP)
uses: actions/upload-artifact@v4
if: success()
with:
name: windows-x86-${{ env.BUILD_VERSION }}-zip
path: build/windows/Taisei-${{ env.BUILD_VERSION }}-windows-x86.zip*
if-no-files-found: error
- name: Upload Release Artifacts
if: ${{ github.event.inputs.release-tag }}
run: >
gh release upload "${{ github.event.inputs.release-tag }}"
build/windows/Taisei-${{ env.BUILD_VERSION }}-setup-x86.exe*
build/windows/Taisei-${{ env.BUILD_VERSION }}-windows-x86.zip*
- name: Upload Log
if: always()
uses: actions/upload-artifact@v4
with:
name: taisei_windows_x86_release_log
path: build/windows/meson-logs/meson-log.txt
if-no-files-found: warn
emscripten-release-build:
name: Emscripten
if: ${{ (github.event.inputs.emscripten || 'true') == 'true' }}
runs-on: ubuntu-20.04
steps:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Tools
run: >
sudo apt update || true
sudo apt install -y -qq
python3-docutils
python3-pip
git
gnupg
pip install
meson==${{ env.MESON_VERSION }}
ninja
zstandard
python-gnupg
- name: Import GPG Key
uses: taisei-project/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
ref: ${{ env.REF }}
- name: Fetch Cached Emscripten SDK
id: emsdk-cache
uses: actions/cache@v4
with:
path: ${{ env.EM_CACHE_FOLDER }}
key: ${{ env.EM_VERSION }}-${{ runner.os }}
- name: Install Emscripten SDK
if: steps.emsdk-cache.outputs.cache-hit != 'true'
run: |
rm -rf ./${{ env.EM_CACHE_FOLDER }}/
git clone https://github.com/emscripten-core/emsdk.git
${{ env.EM_CACHE_FOLDER }}/emsdk install ${{ env.EM_VERSION }}
${{ env.EM_CACHE_FOLDER }}/emsdk activate ${{ env.EM_VERSION }}
- name: Verify Emscripten SDK
run: |
source ${{ env.EM_CACHE_FOLDER }}/emsdk_env.sh
emcc -v
tee misc/ci/emscripten-ephemeral-ci.ini <<EOF >/dev/null
[constants]
toolchain = '$(pwd)/${{ env.EM_CACHE_FOLDER }}/upstream/emscripten/'
EOF
- name: Configure
run: >
git config --global --add safe.directory $(pwd)
git fetch --force --tags
source ${{ env.EM_CACHE_FOLDER }}/emsdk_env.sh
meson setup build/emscripten
--cross-file misc/ci/common-options.ini
--cross-file misc/ci/forcefallback.ini
--cross-file misc/ci/emscripten-build.ini
--cross-file misc/ci/emscripten-ephemeral-ci.ini
--prefix=$(pwd)/build-release
-Ddeveloper=${{ github.event.inputs.developer || 'false' }}
- name: Set Package Version
run: |
echo BUILD_VERSION=$($(pwd)/scripts/version.py) >> $GITHUB_ENV
shell: bash
- name: Build
run: |
echo "Version set to ${{ env.BUILD_VERSION }}"
source ${{ env.EM_CACHE_FOLDER }}/emsdk_env.sh
meson compile -C build/emscripten --verbose
- name: Package
run: |
source ${{ env.EM_CACHE_FOLDER }}/emsdk_env.sh
ninja txz -C build/emscripten --verbose
scripts/sign-release.py build/emscripten/Taisei-${{ env.BUILD_VERSION }}-emscripten-wasm32.tar.xz
- name: Upload Artifact
uses: actions/upload-artifact@v4
if: success()
with:
name: emscripten-wasm32-${{ env.BUILD_VERSION }}-txz
path: build/emscripten/Taisei-${{ env.BUILD_VERSION }}-emscripten-wasm32.tar.xz*
if-no-files-found: error
- name: Upload Release Artifacts
if: ${{ github.event.inputs.release-tag }}
run: >
gh release upload "${{ github.event.inputs.release-tag }}"
build/emscripten/Taisei-${{ env.BUILD_VERSION }}-emscripten-wasm32.tar.xz*
- name: Upload Log
if: always()
uses: actions/upload-artifact@v4
with:
name: taisei_emscripten_build_log
path: build/emscripten/meson-logs/meson-log.txt
if-no-files-found: warn
switch-release-build:
name: Switch (ARM64)
if: ${{ (github.event.inputs.switch || 'true') == 'true' }}
runs-on: ubuntu-latest
container: taiseiproject/switch-toolkit:20240305
steps:
- name: Import GPG Key
uses: taisei-project/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
ref: ${{ env.REF }}
- name: Configure
run: >
git config --global --add safe.directory $(pwd)
git fetch --force --tags
switch/crossfile.sh > misc/ci/switch-crossfile-ci.ini
meson setup build/nx
--cross-file misc/ci/common-options.ini
--cross-file misc/ci/switch-options.ini
--cross-file misc/ci/switch-crossfile-ci.ini
--prefix=$(pwd)/build-release
-Ddeveloper=${{ github.event.inputs.developer || 'false' }}
- name: Set Package Version
run: |
echo BUILD_VERSION=$($(pwd)/scripts/version.py) >> $GITHUB_ENV
shell: bash
- name: Build
run: |
echo "Version set to ${{ env.BUILD_VERSION }}"
meson compile -C build/nx --verbose
- name: Package
run: |
ninja zip -C build/nx --verbose
scripts/sign-release.py build/nx/Taisei-${{ env.BUILD_VERSION }}-switch-aarch64.zip
- name: Upload Artifact
uses: actions/upload-artifact@v4
if: success()
with:
name: switch-aarch64-${{ env.BUILD_VERSION }}-zip
path: build/nx/Taisei-${{ env.BUILD_VERSION }}-switch-aarch64.zip*
if-no-files-found: error
- name: Upload Release Artifacts
if: ${{ github.event.inputs.release-tag }}
run: >
gh release upload "${{ github.event.inputs.release-tag }}"
build/nx/Taisei-${{ env.BUILD_VERSION }}-switch-aarch64.zip*
- name: Upload Log
if: always()
uses: actions/upload-artifact@v4
with:
name: taisei_switch_release_log
path: build/nx/meson-logs/meson-log.txt
if-no-files-found: warn