-
Notifications
You must be signed in to change notification settings - Fork 110
463 lines (397 loc) · 12 KB
/
build.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
name: Build
on: [push, pull_request]
env:
CONTAINER_COMMAND: "podman run
--platform $PLATFORM
--rm
--security-opt seccomp=unconfined
--volume $PWD:/mnt
--workdir /mnt
$IMAGE"
jobs:
windows:
name: Windows MSYS2
strategy:
fail-fast: false
matrix:
msystem: [MINGW64, UCRT64, CLANG64]
include:
- isUcrt: 1
- msystem: MINGW64
isUcrt: 0
packagePrefix: mingw-w64-x86_64
- msystem: UCRT64
packagePrefix: mingw-w64-ucrt-x86_64
- msystem: CLANG64
packagePrefix: mingw-w64-clang-x86_64
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
update: true
install: |
${{ matrix.packagePrefix }}-cc
${{ matrix.packagePrefix }}-make
${{ matrix.packagePrefix }}-qt5-static
${{ matrix.packagePrefix }}-cmake
${{ matrix.packagePrefix }}-7zip
mingw-w64-i686-nsis
git
- name: Download MinGW toolchain
run: |
mkdir -p assets
curl -L https://github.com/redpanda-cpp/toolchain-win32-mingw-xp/releases/download/11.4.0-r0/mingw32-11.4.0-r0.7z -o assets/mingw32.7z
curl -L https://github.com/redpanda-cpp/toolchain-win32-mingw-xp/releases/download/11.4.0-r0/mingw64-11.4.0-r0.7z -o assets/mingw64.7z
- name: Build
run: |
./packages/msys/build-mingw.sh \
$( [[ ${{ matrix.isUcrt }} -eq 1 ]] && echo --ucrt 22621 )
./packages/msys/build-mingw.sh --mingw \
$( [[ ${{ matrix.isUcrt }} -eq 1 ]] && echo --ucrt 22621 )
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Windows MSYS2 - msystem=${{ matrix.msystem }}
path: dist/
windows_legacy_native:
name: Windows NT 5.x native
strategy:
fail-fast: false
matrix:
profile:
- 64-ucrt
- 32-ucrt
- 64-msvcrt
- 32-msvcrt
include:
- isUcrt: 0
- profile: 64-ucrt
isUcrt: 1
- profile: 32-ucrt
isUcrt: 1
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
- name: Build
run: |
./packages/msys/build-xp.sh -p ${{ matrix.profile }} \
$( [[ ${{ matrix.isUcrt }} -eq 1 ]] && echo --ucrt 22621 )
./packages/msys/build-xp.sh -p ${{ matrix.profile }} --mingw \
$( [[ ${{ matrix.isUcrt }} -eq 1 ]] && echo --ucrt 22621 )
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Windows NT 5.x native - profile=${{ matrix.profile }}
path: dist/*
windows_legacy_cross:
name: Windows NT 5.x cross
strategy:
fail-fast: false
matrix:
profile:
- 64-msvcrt
- 32-msvcrt
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
sudo ./packages/xmingw/build-xp.sh -p ${{ matrix.profile }}
sudo ./packages/xmingw/build-xp.sh -p ${{ matrix.profile }} --mingw
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Windows NT 5.x cross - profile=${{ matrix.profile }}
path: dist/*
windows_msvc_x64:
name: Windows MSVC x64
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
host: windows
target: desktop
arch: win64_msvc2019_64
archives: qtbase qtsvg qttools
tools: tools_qtcreator,qt.tools.qtcreator
- name: Build
run: |
$JOM = "${Env:RUNNER_WORKSPACE}/Qt/Tools/QtCreator/bin/jom/jom.exe"
$VS_INSTALL_PATH = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise"
Import-Module "$VS_INSTALL_PATH\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
Enter-VsDevShell -VsInstallPath "$VS_INSTALL_PATH" -SkipAutomaticLocation -DevCmdArguments -arch=amd64
mkdir build && pushd build
qmake PREFIX=${Env:GITHUB_WORKSPACE}/pkg ${Env:GITHUB_WORKSPACE}/Red_Panda_CPP.pro
& $JOM "-j${Env:NUMBER_OF_PROCESSORS}"
& $JOM install
windeployqt ${Env:GITHUB_WORKSPACE}/pkg/RedPandaIDE.exe
rm ${Env:GITHUB_WORKSPACE}/pkg/vc_redist.x64.exe
popd
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Windows MSVC x64
path: pkg/
windows_msvc_arm64ec:
name: Windows MSVC ARM64EC
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
host: windows
target: desktop
arch: win64_msvc2019_64
archives: qtbase qtsvg qttools
tools: tools_qtcreator,qt.tools.qtcreator
- name: Build
run: |
$JOM = "${Env:RUNNER_WORKSPACE}/Qt/Tools/QtCreator/bin/jom/jom.exe"
$VS_INSTALL_PATH = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise"
Import-Module "$VS_INSTALL_PATH\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
Enter-VsDevShell -VsInstallPath "$VS_INSTALL_PATH" -SkipAutomaticLocation -DevCmdArguments "-arch=arm64 -host_arch=amd64"
mkdir build && pushd build
qmake QMAKE_CFLAGS="/arm64EC" QMAKE_CXXFLAGS="/arm64EC" QMAKE_LFLAGS="/MACHINE:ARM64EC" QMAKE_LIBFLAGS="/MACHINE:ARM64X" PREFIX=${Env:GITHUB_WORKSPACE}/pkg ${Env:GITHUB_WORKSPACE}/Red_Panda_CPP.pro
& $JOM "-j${Env:NUMBER_OF_PROCESSORS}"
& $JOM install
windeployqt ${Env:GITHUB_WORKSPACE}/pkg/RedPandaIDE.exe
rm ${Env:GITHUB_WORKSPACE}/pkg/vc_redist.x64.exe
popd
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Windows MSVC ARM64EC (do not use)
path: pkg/
debian:
name: Debian
strategy:
fail-fast: false
matrix:
arch: [amd64, i386]
version: ["11", "12"]
include:
- { arch: amd64, platform: linux/amd64 }
- { arch: i386, platform: linux/386 }
env:
IMAGE: docker.io/${{ matrix.arch }}/debian:${{ matrix.version }}
PLATFORM: ${{ matrix.platform }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/debian/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Debian ${{ matrix.version }} ${{ matrix.arch }}
path: dist/*.deb
ubuntu:
name: Ubuntu
strategy:
fail-fast: false
matrix:
version: ["22.04", "24.04", "24.10", "devel"]
env:
IMAGE: docker.io/amd64/ubuntu:${{ matrix.version }}
PLATFORM: linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/debian/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Ubuntu ${{ matrix.version }} amd64
path: dist/*.deb
archlinux:
name: Arch Linux
runs-on: ubuntu-latest
env:
IMAGE: docker.io/amd64/archlinux:latest
PLATFORM: linux/amd64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/archlinux/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Arch Linux
path: dist/*.pkg.tar.zst
fedora:
name: Fedora
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: ["latest", "rawhide"]
env:
IMAGE: docker.io/amd64/fedora:${{ matrix.version }}
PLATFORM: linux/amd64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/fedora/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Fedora ${{ matrix.version }} x86_64
path: dist/*.rpm
opensuse:
name: openSUSE
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
edition: ["leap", "tumbleweed"]
env:
IMAGE: docker.io/opensuse/${{ matrix.edition }}:latest
PLATFORM: linux/amd64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/opensuse/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: openSUSE ${{ matrix.edition }} x86_64
path: dist/*.rpm
alpine:
name: Alpine Linux
runs-on: ubuntu-latest
env:
IMAGE: docker.io/amd64/alpine:latest
PLATFORM: linux/amd64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/alpine/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Alpine Linux
path: dist/*.apk
appimage:
name: Linux AppImage
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch:
- x86_64
- aarch64
- riscv64
- loong64
- i686
env:
IMAGE: ghcr.io/redpanda-cpp/appimage-builder-${{ matrix.arch }}:20241204.0
PLATFORM: linux/amd64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
${{ env.CONTAINER_COMMAND }} ./packages/appimage/01-in-docker.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Linux AppImage ${{ matrix.arch }}
path: dist/*.AppImage
static-deb:
name: Static Deb
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
packages/debian-static/builddeb.sh
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Static Deb
path: dist/*.deb
macos:
name: macOS
strategy:
fail-fast: false
matrix:
qtVersion: ['5.15.2', '6.8.0']
arch: [x86_64, arm64, universal]
exclude:
- { qtVersion: '5.15.2', arch: arm64 }
- { qtVersion: '5.15.2', arch: universal }
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: jurplel/install-qt-action@v4
with:
version: ${{ matrix.qtVersion }}
host: mac
target: desktop
arch: clang_64
archives: qtbase qtsvg qttools qttranslations
- name: Build
run: |
./packages/macos/build.sh \
--arch ${{ matrix.arch }} \
--qt-install-dir $RUNNER_WORKSPACE/Qt \
--qt-version ${{ matrix.qtVersion }}
- name: Upload
uses: actions/upload-artifact@v4
with:
name: macOS Qt ${{ matrix.qtVersion }} ${{ matrix.arch }}
path: dist/*.tar.xz