-
Notifications
You must be signed in to change notification settings - Fork 11
532 lines (472 loc) · 14.3 KB
/
jqtide.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
name: JQtide
on:
push:
branches:
- master
- main
# if: ${{ false }}
jobs:
# linux ----------------------------------------------------------------
jqtlinux:
name: JQtide (Linux)
runs-on: ubuntu-20.04
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
# - name: Install Qt from distro
# run: script/installqt.sh linux
- name: Install Qt from source
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
target: 'desktop'
dir: '${{github.workspace}}'
# modules: 'qtwebengine qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
modules: 'all'
aqtversion: '==3.1.*'
- name: Compile JQtide
# run: script/makelinux.sh '5.15.2' linux # previous 5.12.8
run: QM=${{github.workspace}}/Qt/5.15.2/gcc_64/bin/qmake script/makelinux.sh '5.15.2' linux
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-linux.tar.gz,jqt-linux-slim.tar.gz,version.txt"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# macOS ----------------------------------------------------------------
jqtmacos:
name: JQtide (macOS)
runs-on: macos-13
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt from source
uses: jurplel/install-qt-action@v4
with:
version: '6.5.3'
target: 'desktop'
dir: '${{github.workspace}}'
# modules: 'qtwebengine qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
modules: 'all'
aqtversion: '==3.1.*'
- name: Compile JQtide
env:
CC: clang
run: QM=${{github.workspace}}/Qt/6.5.3/macos/bin/qmake script/makemac.sh '6.5.3' mac
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-mac.zip,jqt-mac-slim.zip"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# rpi64 ----------------------------------------------------------------
jqtrpi64:
name: JQtide (Raspberry)
runs-on: ubuntu-20.04
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt, Compile JQtide
uses: pguyot/arm-runner-action@v2
with:
cpu: cortex-a53
cpu_info: cpuinfo/raspberrypi_zero2_w_arm64
base_image: raspios_lite_arm64:latest
image_additional_mb: 2048
copy_artifact_path: output
commands: |
script/installqt.sh raspberry
export CC=clang
mkdir -p output
script/makelinux.sh '5.15.2' raspberry
find output -type d -exec chmod a+rwx {} \;
find output -type f -exec chmod a+rw {} \;
- name: Transfer JQtide
run: |
ls output/*
mv output/* .
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-raspberry.tar.gz,jqt-raspberry-slim.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# rpi32 ----------------------------------------------------------------
jqtrpi32:
name: JQtide (Raspberry-arm32)
if: ${{ false }}
runs-on: ubuntu-20.04
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt, Compile JQtide
uses: pguyot/arm-runner-action@v2
with:
cpu: arm1176
cpu_info: cpuinfo/raspberrypi_zero2_w
base_image: raspbian_lite:2020-02-13
image_additional_mb: 2048
copy_artifact_path: output
commands: |
export CC=gcc
script/installqt.sh raspberry-arm32
script/makelinux.sh '5.15.2' raspberry-arm32
find output -type d -exec chmod a+rwx {} \;
find output -type f -exec chmod a+rw {} \;
- name: Transfer JQtide
run: |
ls output/*
mv output/* .
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-raspberry-arm32.tar.gz,jqt-raspberry-arm32-slim.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# openbsd --------------------------------------------------------------
jqtopenbsd:
name: JQtide (OpenBSD cross-platform-actions)
runs-on: macos-13
steps:
- name: Checkout Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt, Compile JQtide
uses: cross-platform-actions/action@v0.23.0
with:
operating_system: openbsd
architecture: x86-64
version: '7.2'
shell: bash
run: |
rm -f jobdone
export IGNORE_OSVERSION=yes
sudo pkg_add curl zip gmake
sudo rdate time.cloudflare.com || true
export CC=clang
script/installqt.sh openbsd || exit 1
script/makelinux.sh '5.15.2' openbsd || exit 1
touch jobdone
- name: Check Status
run: |
test -f jobdone || exit 1
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-openbsd.tar.gz,jqt-openbsd-slim.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# freebsd --------------------------------------------------------------
jqtfreebsd:
name: JQtide (FreeBSD vmactions)
if: ${{ false }}
runs-on: macos-13
steps:
- name: Checkout Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt, Compile JQtide
uses: vmactions/freebsd-vm@v0
with:
usesh: true
sync: sshfs
prepare: |
rdate time.cloudflare.com || true
pkg install -y curl zip gmake sudo
run: |
rm -f jobdone
pkg install -y curl zip gmake
rdate time.cloudflare.com || true
export CC=clang
script/installqt.sh freebsd || exit 1
script/makelinux.sh '5.15.12' freebsd || exit 1
touch jobdone
- name: Check Status
run: |
test -f jobdone || exit 1
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-freebsd.tar.gz,jqt-freebsd-slim.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# freebsd --------------------------------------------------------------
jqtfreebsd2:
name: JQtide (FreeBSD cross-platform-actions)
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt, Compile JQtide
uses: cross-platform-actions/action@v0.23.0
with:
operating_system: freebsd
architecture: x86-64
version: '13.2'
shell: bash
run: |
rm -f jobdone
export IGNORE_OSVERSION=yes
sudo pkg install -y curl zip gmake
sudo rdate time.cloudflare.com || true
export CC=clang
script/installqt.sh freebsd || exit 1
script/makelinux.sh '5.15.12' freebsd || exit 1
touch jobdone
- name: Check Status
run: |
test -f jobdone || exit 1
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-freebsd.tar.gz,jqt-freebsd-slim.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# windows --------------------------------------------------------------
jqtwin:
name: JQtide (Windows)
runs-on: windows-2019
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Environment (Windows)
uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64
- name: Install Qt from source
uses: jurplel/install-qt-action@v4
with:
version: '6.5.3'
target: 'desktop'
arch: 'win64_msvc2019_64'
dir: '${{github.workspace}}'
# modules: 'qtwebengine qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
modules: 'all'
aqtversion: '==3.1.*'
- name: Compile JQtide
shell: cmd
run: script\makewin.cmd 6.5.3 x64
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-win.zip,jqt-win-slim.zip"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# windows arm64 --------------------------------------------------------
jqtwinarm64:
name: JQtide (Windows arm64)
runs-on: windows-2022
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Environment (Windows arm64)
uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64_arm64
- name: Install Qt from source
uses: jurplel/install-qt-action@v4
with:
version: '6.7.3'
target: 'desktop'
arch: 'win64_msvc2019_64'
dir: '${{github.workspace}}'
# modules: 'qtwebengine qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
# modules: 'all'
aqtversion: '==3.1.*'
- name: Install Qt from source arm64
uses: jurplel/install-qt-action@v4
with:
version: '6.7.3'
target: 'desktop'
arch: 'win64_msvc2019_arm64'
dir: '${{github.workspace}}'
# modules: 'qtwebengine qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
modules: 'all'
aqtversion: '==3.1.*'
- name: Compile JQtide
shell: cmd
run: script\makewin.cmd 6.7.3 arm64
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-winarm64-slim.zip"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# wasm -----------------------------------------------------------------
jqtwasm:
name: JQtide (wasm)
if: ${{ false }}
runs-on: macos-13
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt from source
uses: jurplel/install-qt-action@v4
with:
version: '6.5.3'
target: 'desktop'
dir: '${{github.workspace}}'
# modules: 'qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
# modules: 'all'
aqtversion: '==3.1.*'
- name: Install Qt from source wasm
uses: jurplel/install-qt-action@v4
with:
version: '6.5.3'
target: 'desktop'
arch: 'wasm_multithread'
dir: '${{github.workspace}}'
# modules: 'qt5compat qtwebsockets qtmultimedia qtwebchannel'
modules: 'all'
aqtversion: '==3.1.*'
- name: Install emsdk
uses: mymindstorm/setup-emsdk@v14
with:
version: '3.1.32'
- name: Verify
run: emcc -v
- name: Compile JQtide
env:
CC: clang
run: |
./cpjlib.sh
./cplibjtest.sh
JQTSLIM=JQTSLIM QMAKESPEC=wasm-emscripten QM=${{github.workspace}}/Qt/6.5.3/wasm_multithread/bin/qmake ./makeall.sh
rm -rf j32
mkdir j32
ls -l bin/wasm-wasm32/release
cp bin/wasm-wasm32/release/* j32/.
zip -r jqt-wasm-slim.zip j32
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-wasm-slim.zip"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
# ios ------------------------------------------------------------------
jqtios:
name: JQtide (ios)
runs-on: macos-13
steps:
- name: Check Git repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt from source
uses: jurplel/install-qt-action@v4
with:
version: '6.5.3'
target: 'desktop'
dir: '${{github.workspace}}'
# modules: 'qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
# modules: 'all'
aqtversion: '==3.1.*'
- name: Install Qt from source ios
uses: jurplel/install-qt-action@v4
with:
version: '6.5.3'
target: 'ios'
dir: '${{github.workspace}}'
# modules: 'qt5compat qtwebsockets qtmultimedia qtwebchannel qtpositioning'
modules: 'all'
aqtversion: '==3.1.*'
- name: Compile JQtide
env:
CC: clang
run: |
cd ~/
wget https://www.jsoftware.com/download/j9.6/install/j9.6_mac64.zip
unzip j9.6_mac64.zip
find j9.6 -type f -name 'jconsole' -exec chmod 755 {} \;
j9.6/bin/jconsole -js "exit 0['install'jpkg'all'['update'jpkg''[load'pacman'"
cd -
rm -rf jlibrary
mkdir -p jlibrary/bin
cp -r ~/j9.6/addons jlibrary/.
cp -r ~/j9.6/system jlibrary/.
cp ~/j9.6/bin/profile.ijs jlibrary/bin/.
rm -rf ~/j9.6
rm -rf ~/j9.6-user
cd ~/
wget https://github.com/jsoftware/jsource/releases/download/build/m64.zip
unzip m64.zip
cd -
rm -rf ios
cp -r ~/j64/ios .
rm -rf ~/m64.zip
rm -rf ~/j64
mkdir -p ios/mpir
cd ios/mpir
wget https://www.jsoftware.com/download/jengine/mpir/apple/ios/libgmp.a
cd -
cd ~/
wget https://github.com/jsoftware/jsource/archive/master.tar.gz
tar -xzf master.tar.gz
cd -
rm -rf test
cp -r ~/jsource-master/test .
rm -rf ~/jsource-master
echo "QMAKE_XCODE_CODE_SIGN_IDENTITY = \"iPhone Developer\"" > ios_signature.pri
echo "development_team.name = DEVELOPMENT_TEAM" >> ios_signature.pri
echo "development_team.value = bill.w.lam@icloud.com" >> ios_signature.pri
echo "QMAKE_MAC_XCODE_SETTINGS += development_team" >> ios_signature.pri
QM=${{github.workspace}}/Qt/6.5.3/ios/bin/qmake script/makemac.sh '6.5.3' ios
- name: Release JQtide
uses: ncipollo/release-action@v1
with:
tag: build
artifacts: "jqt-ios-slim.zip"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
replacesArtifacts: true
webhook:
name: Run Webhook
runs-on: ubuntu-20.04
# 7 jul 2024 - ios/wasm builds fail
# needs: [jqtlinux, jqtmacos, jqtrpi64, jqtwin, jqtfreebsd2, jqtopenbsd, jqtios, jqtwasm]
needs: [jqtlinux, jqtmacos, jqtrpi64, jqtwin, jqtwinarm64, jqtfreebsd2, jqtopenbsd, jqtios]
steps:
- name: update server
uses: distributhor/workflow-webhook@v2
env:
webhook_url: ${{ secrets.WEBHOOK_URL }}
webhook_secret: ${{ secrets.WEBHOOK_SECRET }}
data: '{ "id": "jqtbuild" }'