-
Notifications
You must be signed in to change notification settings - Fork 0
492 lines (418 loc) · 14.3 KB
/
naev_nightly.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
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
name: Nightly Release
permissions: {}
jobs:
"Package_Source":
permissions:
contents: read # to fetch code (actions/checkout)
runs-on: ubuntu-latest
container:
image: "ghcr.io/naev/naev-release:latest"
steps:
- name: Checkout Naev Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
path: source
submodules: true
- name: Package Dist
run: |
meson setup build source -Dexecutable=disabled -Ddocs_c=disabled -Ddocs_lua=disabled
meson dist -C build --no-tests --include-subprojects
- name: Collect Artifacts
run: |
mkdir -p build/dist
cp -r source/utils/ci/itch source/utils/ci/steam source/utils/ci/gh build/dist/
cp source/utils/buildAppImage.sh build/dist
cp source/utils/buildUniversalBundle.sh build/dist
cp -r source/extras/macos/dmg_assets build/dist
cp source/extras/macos/entitlements.plist build/dist
mv build/meson-dist/naev-*.tar.xz build/dist/source.tar.xz
cp source/dat/VERSION build/dist
- name: Upload Source Artifact
uses: actions/upload-artifact@v4
with:
name: naev-dist
path: ${{ github.workspace }}/build/dist/source.tar.xz
if-no-files-found: error
- name: Upload Version Artifact
uses: actions/upload-artifact@v4
with:
name: naev-version
path: ${{ github.workspace }}/build/dist/VERSION
if-no-files-found: error
- name: Upload AppImage Packaging Script Artifact
uses: actions/upload-artifact@v4
with:
name: naev-appimage-packaging
path: ${{ github.workspace }}/build/dist/buildAppImage.sh
if-no-files-found: error
- name: Upload Universal Bundle Packaging Script Artifact
uses: actions/upload-artifact@v4
with:
name: naev-macos-packaging
path: ${{ github.workspace }}/build/dist/buildUniversalBundle.sh
if-no-files-found: error
- name: Upload DMG Assets Artifact
uses: actions/upload-artifact@v4
with:
name: naev-macos-dmg
path: ${{ github.workspace }}/build/dist/dmg_assets
if-no-files-found: error
include-hidden-files: true
- name: Upload Entitlements PLIST Artifact
uses: actions/upload-artifact@v4
with:
name: naev-macos-entitlements
path: ${{ github.workspace }}/build/dist/entitlements.plist
if-no-files-found: error
- name: Upload GitHub Deployment Artifact
uses: actions/upload-artifact@v4
with:
name: naev-github-deployment
path: ${{ github.workspace }}/build/dist/gh/*
if-no-files-found: error
- name: Upload Steam Deployment Script Artifact
uses: actions/upload-artifact@v4
with:
name: naev-steam-deployment
path: ${{ github.workspace }}/build/dist/steam/*
if-no-files-found: error
- name: Upload Itch Deployment Artifact
uses: actions/upload-artifact@v4
with:
name: naev-itch-deployment
path: ${{ github.workspace }}/build/dist/itch/*
if-no-files-found: error
include-hidden-files: true
"Linux_Naev_Release":
needs: "Package_Source"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
container:
image: "ghcr.io/naev/naev-steamruntime:latest"
volumes:
- ${{ github.workspace }}:${{ github.workspace }}
steps:
- name: Get Source
uses: actions/download-artifact@v4
with:
name: naev-dist
- name: Extract Source
run: |
mkdir source
tar -xf source.tar.xz -C source --strip 1
- name: Meson Setup
run: |
meson setup build source \
--native-file='source/utils/build/linux_steamruntime.ini' \
--buildtype=debug \
--force-fallback-for=glpk,SuiteSparse \
-Dsteamruntime=true \
-Dprefix="/usr" \
-Dinstaller=true \
-Db_lto=true \
-Dauto_features=enabled \
-Ddocs_c=disabled \
-Ddocs_lua=disabled
- name: Meson Compile
run: |
meson compile -C build
- name: Meson Install
run: |
meson install -C build
env:
DESTDIR: ${{ github.workspace }}/staging
- name: Compile AppImage
run: |
./source/utils/buildAppImage.sh -d -n -s source -b build
- name: Collect Steam Linux64 Artifacts
run: |
mkdir -p build/dist/
mv staging/usr/bin/naev build/dist/naev.x64
chmod +x build/dist/naev.x64
tar -cJvf build/dist/naev-appdir.tar.xz -C build/dist/ AppDir
tar -cJvf build/dist/naev-ndata.tar.xz -C staging/usr/share/naev dat
- name: Upload Naev Binary Artifact
uses: actions/upload-artifact@v4
with:
name: naev-steamruntime
path: ${{ github.workspace }}/build/dist/naev.x64
- name: Upload Naev Data Artifact
uses: actions/upload-artifact@v4
with:
name: naev-ndata
path: ${{ github.workspace }}/build/dist/naev-ndata.tar.xz
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: naev-linux-appdir-x86-64
path: "${{ github.workspace }}/build/dist/naev-appdir.tar.xz"
"Linux_Package_Release":
needs:
[
Package_Source,
Linux_Naev_Release
]
runs-on: ubuntu-latest
defaults:
run:
shell: bash
container:
image: "ghcr.io/naev/naev-release:latest"
steps:
- name: Get AppImage Packaging Script
uses: actions/download-artifact@v4
with:
name: naev-appimage-packaging
- name: Get AppDir
uses: actions/download-artifact@v4
with:
name: naev-linux-appdir-x86-64
- name: Package AppImage
run: |
chmod +x buildAppImage.sh
tar -Jxf naev-appdir.tar.xz
./buildAppImage.sh -d -n -p -a "./AppDir" -b build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: naev-linux-x86-64
path: "${{ github.workspace }}/build/dist/*"
"Windows_Naev_Release":
needs: "Package_Source"
runs-on: ubuntu-latest
container:
image: "ghcr.io/naev/naev-windows:latest"
steps:
- name: Get Source
uses: actions/download-artifact@v4
with:
name: naev-dist
- name: Extract Source
run: |
mkdir source
tar -xf source.tar.xz -C source --strip 1
- name: Meson Setup
run: |
meson setup build source \
--prefix="$(pwd)"/build/windows \
--bindir=. \
-Dndata_path=. \
--cross-file='source/utils/build/windows_cross_mingw_ucrt64.ini' \
--buildtype=debug \
--force-fallback-for=glpk,SuiteSparse \
-Dinstaller=true \
-Drelease=true \
-Db_lto=true \
-Dauto_features=enabled \
-Ddocs_c=disabled \
-Ddocs_lua=disabled
- name: Meson Compile
run: |
meson compile -C build
- name: Meson Install
run: |
meson install -C build
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: naev-win64
path: ${{ github.workspace }}/build/dist/*
if-no-files-found: error
"Darwin_Compile_Naev":
needs: "Package_Source"
strategy:
fail-fast: false
matrix:
include:
- image: naev-macos
arch: x86_64
deploymenttarget: "10.13"
config: macos_cross_osxcross.ini
- image: naev-macos
arch: aarch64
deploymenttarget: "12.0"
config: macos_aarch64_cross_osxcross.ini
runs-on: ubuntu-latest
defaults:
run:
shell: bash
container:
image: "ghcr.io/naev/${{ matrix.image }}:latest"
env:
BUILDARCH: "${{ matrix.arch }}"
HOST: "${{ matrix.arch }}-apple-darwin23"
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.deploymenttarget }}"
steps:
- name: Configure Build Environment
run: |
echo "Configuring MacPorts packages and build env variables for $BUILDARCH."
if [[ "$BUILDARCH" == "aarch64" ]] then
rm -f /usr/lib/osxcross/macports
ln -s /usr/lib/osxcross/macports.aarch64 /usr/lib/osxcross/macports
elif [[ "$BUILDARCH" == "x86_64" ]] then
rm -f /usr/lib/osxcross/macports
ln -s /usr/lib/osxcross/macports.x86_64 /usr/lib/osxcross/macports
# Fallback
else
rm -f /usr/lib/osxcross/macports
ln -s /usr/lib/osxcross/macports.x86_64 /usr/lib/osxcross/macports
fi
- name: Get Source
uses: actions/download-artifact@v4
with:
name: naev-dist
- name: Extract Source
run: |
mkdir source
tar -xf source.tar.xz -C source --strip 1
- name: Meson Setup
run: |
meson setup build source \
--prefix="$(pwd)"/build/macos/Naev.app \
--bindir=Contents/MacOS \
-Dndata_path=Contents/Resources \
--cross-file='source/utils/build/${{ matrix.config }}' \
--buildtype=debug \
-Dinstaller=false \
-Drelease=true \
-Db_lto=true \
-Dauto_features=enabled \
-Ddocs_c=disabled \
-Ddocs_lua=disabled
- name: Meson Compile
run: |
meson compile -C build
- name: Meson Install
run: |
meson install -C build
- name: Fix zip name
run: |
mv build/dist/naev-macos.zip build/dist/naev-macos-${{ matrix.arch }}.zip
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: naev-macos-${{ matrix.arch }}
path: ${{ github.workspace }}/build/dist/naev-macos-${{ matrix.arch }}.zip
if-no-files-found: error
"Darwin_Package_Release":
needs:
[
Package_Source,
Darwin_Compile_Naev
]
runs-on: ubuntu-latest
defaults:
run:
shell: bash
container:
image: "ghcr.io/naev/naev-macos:latest"
steps:
- name: Get Universal Bundle Packaging Script
uses: actions/download-artifact@v4
with:
name: naev-macos-packaging
- name: Get DMG Assets
uses: actions/download-artifact@v4
with:
name: naev-macos-dmg
path: dmg_assets
- name: Get Entitlements PLIST
uses: actions/download-artifact@v4
with:
name: naev-macos-entitlements
- name: Get x86_64 macOS Bundle
uses: actions/download-artifact@v4
with:
name: naev-macos-x86_64
- name: Get ARM64 macOS Bundle
uses: actions/download-artifact@v4
with:
name: naev-macos-aarch64
- name: Package Universal Bundle
run: |
mkdir -p arm64 x86_64
chmod +x buildUniversalBundle.sh
unzip naev-macos-aarch64.zip -d arm64
unzip naev-macos-x86_64.zip -d x86_64
./buildUniversalBundle.sh -d -i ./dmg_assets -e ./entitlements.plist -a ./arm64 -x ./x86_64 -b ./build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: naev-macos
path: "${{ github.workspace }}/build/dist/*"
"Upload_Naev_Release":
permissions:
contents: write # to generate pre-release (marvinpinto/action-automatic-releases)
strategy:
fail-fast: false
matrix:
include:
- releasetype: github
- releasetype: steam
- releasetype: itch
runs-on: ubuntu-latest
container:
image: "ghcr.io/naev/naev-release:latest"
needs:
[
Package_Source,
Linux_Package_Release,
Windows_Naev_Release,
Darwin_Package_Release,
]
if: ${{ github.repository == 'naev/naev' }}
steps:
- name: Checkout Naev Repository
uses: actions/checkout@v4
if: ${{ matrix.releasetype == 'github' }}
- name: Create Release Staging and Output Areas
run: |
mkdir -p temp build/{staging,dist/{lin64,macos,win64}}
working-directory: ${{ github.workspace }}
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: ${{ github.workspace }}/build/staging
- name: Create Github Release
if: ${{ matrix.releasetype == 'github' }}
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "nightly"
prerelease: true
title: "Nightly Build"
- name: Build and Upload Github Release
if: ${{ matrix.releasetype == 'github' }}
run: |
chmod -R +x build/staging/naev-github-deployment
cp -r build/staging/naev-github-deployment/* "$(pwd)"
./GHDeploy.sh -n -t "$(pwd)/build/staging" -o "$(pwd)/build/dist" -r "nightly"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Upload itch.io Release
if: ${{ matrix.releasetype == 'itch' }}
run: |
chmod -R +x build/staging/naev-itch-deployment
cp -r build/staging/naev-itch-deployment/* "$(pwd)"
./ItchDeploy.sh -n -t "$(pwd)/build/staging" -o "$(pwd)/build/dist"
env:
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
- name: Build and Upload Steam Release
if: ${{ matrix.releasetype == 'steam' }}
run: |
chmod -R +x build/staging/naev-steam-deployment
cp -r build/staging/naev-steam-deployment/* "$(pwd)"
./SteamDeploy.sh -n -t "$(pwd)/build/staging" -o "$(pwd)/build/dist"
env:
STEAMCMD_USER: ${{ secrets.STEAMCMD_USER }}
STEAMCMD_PASS: ${{ secrets.STEAMCMD_PASS }}
TFA_IMAP: ${{ secrets.TFA_IMAP }}
TFA_PASS: ${{ secrets.TFA_PASS }}
TFA_USER: ${{ secrets.TFA_USER }}