forked from opennox/opennox
-
Notifications
You must be signed in to change notification settings - Fork 0
466 lines (406 loc) · 14.6 KB
/
build-and-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
name: Build and release
on:
push:
branches:
- main
- master
- dev
- ci_tests
- dennwc
tags:
- '*'
pull_request:
branches:
- main
- master
- dev
env:
DOCKER_IMAGE_NAME: ghcr.io/opennox/opennox
jobs:
hybrid_docker_mingw:
# Cross compile Windows binaries with mingw on ArchLinux-based Linux environment
name: Cross compile for Windows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Get go cache
uses: actions/cache@v3
with:
path: gocache
key: mingw-gocache-v3-${{ hashFiles('**/go.sum') }}
restore-keys: |
mingw-gocache-v3-
- uses: docker://ghcr.io/opennox/docker-build:latest-win
name: Docker build
- uses: actions/upload-artifact@v3
name: Upload artifacts
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev') || (github.ref == 'refs/heads/ci_tests')
with:
name: opennox-win
path: |
build/opennox.exe
build/opennox-hd.exe
build/opennox-debug.exe
build/opennox-debug-hd.exe
build/opennox-server.exe
build/*.dll
if-no-files-found: error
retention-days: 1
hybrid_docker_win7:
# Cross compile Windows binaries with downgraded Go toolkit
name: Cross compile for Windows (Win7 compatible)
runs-on: ubuntu-latest
if: false # TODO
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Get go cache
uses: actions/cache@v3
with:
path: gocache
key: mingw-win7-gocache-v3-${{ hashFiles('**/go.sum') }}
restore-keys: |
mingw-win7-gocache-v3-
- uses: docker://ghcr.io/opennox/docker-build:win-go1.21.4
name: Docker build
env:
GOTOOLCHAIN: local
- uses: actions/upload-artifact@v3
name: Upload artifacts
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev') || (github.ref == 'refs/heads/ci_tests')
with:
name: opennox-win7
path: |
build/opennox.exe
build/opennox-hd.exe
build/opennox-debug.exe
build/opennox-debug-hd.exe
build/opennox-server.exe
build/*.dll
if-no-files-found: error
retention-days: 1
linux_docker:
# Compile Linux binaries with a golang docker container
name: Compile for Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Get go cache
uses: actions/cache@v3
with:
path: gocache
key: linux-gocache-v3-${{ hashFiles('**/go.sum') }}
restore-keys: |
linux-gocache-v3-
- uses: docker://ghcr.io/opennox/docker-build:latest-linux
name: Docker build
- uses: actions/upload-artifact@v3
name: Upload artifacts
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev') || (github.ref == 'refs/heads/ci_tests')
with:
name: opennox-linux
path: |
build/opennox
build/opennox-hd
build/opennox-server
if-no-files-found: error
retention-days: 1
snapcraft_linux:
name: Go build for Snapcraft
runs-on: 'ubuntu-20.04'
if: startsWith(github.ref, 'refs/tags/v') || (github.ref == 'refs/heads/dev')
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: 'Build Snap package'
uses: snapcore/action-build@v1
id: snapcraft
with:
snapcraft-channel: '7.x'
# - name: 'Upload the package'
# uses: actions/upload-artifact@v3
# with:
# name: opennox-snap
# path: ${{ steps.snapcraft.outputs.snap }}
- name: 'Publish to edge channel'
uses: snapcore/action-publish@v1
if: github.ref == 'refs/heads/dev'
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
with:
snap: ${{ steps.snapcraft.outputs.snap }}
release: edge
- name: 'Publish to stable channel'
uses: snapcore/action-publish@v1
if: startsWith(github.ref, 'refs/tags/v')
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
with:
snap: ${{ steps.snapcraft.outputs.snap }}
release: stable
docker_server:
name: Docker server build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev') || (github.ref == 'refs/heads/ci_tests')
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Docker build
run: |
make build-server-docker
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev')
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push latest
if: github.ref == 'refs/heads/dev'
run: |
docker push $DOCKER_IMAGE_NAME:dev
- name: Push tagged
if: startsWith(github.ref, 'refs/tags/')
run: |
export VERSION=$(git name-rev --tags --name-only $(git rev-parse HEAD))
docker tag $DOCKER_IMAGE_NAME:dev $DOCKER_IMAGE_NAME:${VERSION}
docker push $DOCKER_IMAGE_NAME:${VERSION}
- name: Push latest
if: startsWith(github.ref, 'refs/tags/v')
run: |
docker tag $DOCKER_IMAGE_NAME:dev $DOCKER_IMAGE_NAME:latest
docker push $DOCKER_IMAGE_NAME:latest
docker_server_demo:
name: Docker server build (demo)
runs-on: ubuntu-latest
if: false # TODO: Internet Archive is down, can't download demo installer
# if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev') || (github.ref == 'refs/heads/ci_tests')
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Docker build
run: |
make build-server-demo-docker
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/dev')
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push latest
if: github.ref == 'refs/heads/dev'
run: |
docker push $DOCKER_IMAGE_NAME:dev-demo
- name: Push tagged
if: startsWith(github.ref, 'refs/tags/')
run: |
export VERSION=$(git name-rev --tags --name-only $(git rev-parse HEAD))
docker tag $DOCKER_IMAGE_NAME:dev-demo $DOCKER_IMAGE_NAME:${VERSION}-demo
docker push $DOCKER_IMAGE_NAME:${VERSION}-demo
- name: Push latest
if: startsWith(github.ref, 'refs/tags/v')
run: |
docker tag $DOCKER_IMAGE_NAME:dev-demo $DOCKER_IMAGE_NAME:demo
docker push $DOCKER_IMAGE_NAME:demo
release_repackage_linux_gzip:
name: Repackage Linux release (tar.gz)
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/ci_tests')
needs: [linux_docker]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Cleanup
run: |
rm -rf /tmp/linux-tmp
mkdir -p /tmp/linux-tmp
- uses: actions/download-artifact@v3
with:
name: opennox-linux
path: /tmp/linux-tmp/
- name: Repackage release
run: |
ls -lh /tmp/linux-tmp/
rm -rf /tmp/opennox-linux
mkdir -p /tmp/opennox-linux
cp /tmp/linux-tmp/* /tmp/opennox-linux
cp ./CHANGELOG.md /tmp/opennox-linux
export VERSION=$(git name-rev --tags --name-only $(git rev-parse HEAD))
cd /tmp/opennox-linux
rm -rf /tmp/opennox-linux-release
mkdir -p /tmp/opennox-linux-release
tar -czf /tmp/opennox-linux-release/OpenNox-linux-$VERSION.tar.gz ./*
- name: Upload the archive
uses: actions/upload-artifact@v3
with:
name: opennox-release-linux-tgz
path: /tmp/opennox-linux-release/OpenNox-linux-*.tar.gz
if-no-files-found: error
release_repackage_linux_appimage:
name: Repackage Linux release (AppImage)
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/appimage-workflow-test') || (github.ref == 'refs/heads/ci_tests')
needs: [linux_docker]
steps:
- uses: actions/download-artifact@v3
name: Retrieving compiled OpenNox
with:
name: opennox-linux
path: build
- uses: docker://ghcr.io/opennox/docker-build:latest-linux-packaging-appimage
name: Using docker build - latest-linux-packaging-appimage
- uses: actions/upload-artifact@v3
name: Upload the AppImage
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/appimage-workflow-test') || (github.ref == 'refs/heads/ci_tests')
with:
name: opennox-release-linux-appimage
path: |
build/opennox-bundle-i386.AppImage
if-no-files-found: error
retention-days: 1
release_repackage_win:
name: Repackage Windows release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/ci_tests')
needs: [hybrid_docker_mingw]
steps:
- name: Install NSIS
run: sudo apt-get install -y nsis
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Cleanup
run: |
rm -rf /tmp/win-tmp
mkdir -p /tmp/win-tmp
- uses: actions/download-artifact@v3
with:
name: opennox-win
path: /tmp/win-tmp/
- name: Repackage release
run: |
ls -lh /tmp/win-tmp/
rm -rf /tmp/opennox-win
mkdir -p /tmp/opennox-win
cp /tmp/win-tmp/*.exe /tmp/opennox-win/
cp /tmp/win-tmp/*.dll /tmp/opennox-win/
cp ./CHANGELOG.md /tmp/opennox-win/
rm -rf /tmp/opennox-win-release
mkdir -p /tmp/opennox-win-release
export VERSION=$(git name-rev --tags --name-only $(git rev-parse HEAD))
makensis -DVERSION="$VERSION" -DDATA="/tmp/opennox-win/" -DOUTDIR="/tmp/opennox-win-release/" ./scripts/opennox.nsi
cd /tmp/opennox-win
zip -9 -r /tmp/opennox-win-release/OpenNox-$VERSION.zip ./*
- name: Upload the archive
uses: actions/upload-artifact@v3
with:
name: opennox-release-win
path: |
/tmp/opennox-win-release/OpenNox-*.zip
/tmp/opennox-win-release/OpenNox-*.exe
if-no-files-found: error
release_repackage_win7:
name: Repackage Windows release (Win7 compatible)
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/ci_tests')
needs: [hybrid_docker_win7]
steps:
- name: Install NSIS
run: sudo apt-get install -y nsis
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Cleanup
run: |
rm -rf /tmp/win-tmp
mkdir -p /tmp/win-tmp
- uses: actions/download-artifact@v3
with:
name: opennox-win7
path: /tmp/win-tmp/
- name: Repackage release
run: |
ls -lh /tmp/win-tmp/
rm -rf /tmp/opennox-win
mkdir -p /tmp/opennox-win
cp /tmp/win-tmp/*.exe /tmp/opennox-win/
cp /tmp/win-tmp/*.dll /tmp/opennox-win/
cp ./CHANGELOG.md /tmp/opennox-win/
rm -rf /tmp/opennox-win-release
mkdir -p /tmp/opennox-win-release
export VERSION=$(git name-rev --tags --name-only $(git rev-parse HEAD))
makensis -DVERSION="win7-$VERSION" -DDATA="/tmp/opennox-win/" -DOUTDIR="/tmp/opennox-win-release/" ./scripts/opennox.nsi
cd /tmp/opennox-win
zip -9 -r /tmp/opennox-win-release/OpenNox-win7-$VERSION.zip ./*
- name: Upload the archive
uses: actions/upload-artifact@v3
with:
name: opennox-release-win7
path: |
/tmp/opennox-win-release/OpenNox-win7-*.zip
/tmp/opennox-win-release/OpenNox-win7-*.exe
if-no-files-found: error
github_release:
name: Github release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: [release_repackage_linux_appimage, release_repackage_linux_gzip, release_repackage_win, release_repackage_win7]
steps:
- name: Cleanup
run: |
rm -rf /tmp/release-tmp
mkdir -p /tmp/release-tmp
- uses: actions/download-artifact@v3
name: Preparing Linux (tar.gz) file for release.
with:
name: opennox-release-linux-tgz
path: /tmp/release-tmp/
- uses: actions/download-artifact@v3
name: Preparing Linux (AppImage) file for release.
with:
name: opennox-release-linux-appimage
path: /tmp/release-tmp/
- uses: actions/download-artifact@v3
name: Preparing Windows (NSIS installer, Zip archive) files for release.
with:
name: opennox-release-win
path: /tmp/release-tmp/
- uses: actions/download-artifact@v3
name: Preparing Windows (Win7 compatible) (NSIS installer, Zip archive) files for release.
with:
name: opennox-release-win7
path: /tmp/release-tmp/
- name: Releasing prepared files.
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
body: |
TODO: changelog
draft: true
fail_on_unmatched_files: true
files: |
/tmp/release-tmp/opennox-bundle-i386.AppImage
/tmp/release-tmp/OpenNox-linux-*.tar.gz
/tmp/release-tmp/OpenNox-*.zip
/tmp/release-tmp/OpenNox-*.exe