This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 145
/
build.yml
611 lines (583 loc) · 12.6 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
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
# prefix used in determining full image name in "docker-images" and "compile-docker"
docker-prefix: "wkhtmltopdf/0.12:"
# all targets supported by the docker-related commands, keys are as follows:
#
# source: Dockerfile used to build image
# output: one of deb, rpm, tar or 7z
# args: build-time docker args (optional)
# arch: used as arch specified to fpm (for deb or rpm output)
# matrix: list of architectures distro supports (NOTE: generates per-arch targets)
# depend: dependent packages specified to fpm (for deb or rpm output)
# qt_config: override the qt configuration used for building Qt (optional)
# cross_compile: use given prefix for cross-compilation (optional)
# qemu: emulate via qemu-user-static image for specified platform
#
docker-targets:
bullseye:
source: docker/Dockerfile.debian
args:
from: debian:bullseye
output: deb
matrix: ['amd64', 'i386', 'arm64', 'armhf', 'armel', 'ppc64el']
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg62-turbo
libpng16-16
libssl1.1
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
buster:
source: docker/Dockerfile.debian
args:
from: debian:buster
output: deb
matrix: ['amd64', 'i386', 'arm64', 'armhf', 'armel', 'ppc64el']
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg62-turbo
libpng16-16
libssl1.1
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
bookworm:
source: docker/Dockerfile.debian
args:
from: debian:bookworm
python: python3
output: deb
matrix: ['amd64', 'i386', 'arm64', 'armhf', 'armel', 'ppc64el']
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg62-turbo
libpng16-16
libssl3
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
raspberrypi.bookworm-armhf:
source: docker/Dockerfile.debian
args:
from: balenalib/rpi-raspbian:bookworm
python: python3
output: deb
qemu: linux/386 # see https://github.com/RPi-Distro/pi-gen/issues/271
arch: armhf
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg62-turbo
libpng16-16
libssl3
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
raspberrypi.bullseye-armhf:
source: docker/Dockerfile.debian
args:
from: balenalib/rpi-raspbian:bullseye
output: deb
qemu: linux/386 # see https://github.com/RPi-Distro/pi-gen/issues/271
arch: armhf
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg62-turbo
libpng16-16
libssl1.1
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
raspberrypi.buster-armhf:
source: docker/Dockerfile.debian
args:
from: balenalib/rpi-raspbian:buster
output: deb
qemu: linux/386 # see https://github.com/RPi-Distro/pi-gen/issues/271
arch: armhf
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg62-turbo
libpng16-16
libssl1.1
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
jammy:
source: docker/Dockerfile.debian
args:
from: ubuntu:jammy
jpeg: libjpeg-turbo8-dev
python: python3
output: deb
matrix: ['amd64', 'arm64', 'armhf', 'ppc64el', 's390x']
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg-turbo8
libpng16-16
libssl3
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
focal:
source: docker/Dockerfile.debian
args:
from: ubuntu:focal
jpeg: libjpeg-turbo8-dev
output: deb
matrix: ['amd64', 'arm64', 'armhf', 'ppc64el']
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg-turbo8
libpng16-16
libssl1.1
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
bionic:
source: docker/Dockerfile.debian
args:
from: ubuntu:bionic
jpeg: libjpeg-turbo8-dev
output: deb
matrix: ['amd64', 'i386', 'arm64', 'armhf', 'ppc64el']
depend: >
ca-certificates
fontconfig
libc6
libfreetype6
libjpeg-turbo8
libpng16-16
libssl1.1
libstdc++6
libx11-6
libxcb1
libxext6
libxrender1
xfonts-75dpi
xfonts-base
zlib1g
almalinux9:
source: docker/Dockerfile.centos
args:
from: almalinux:9
output: rpm
matrix: ['x86_64', 'aarch64', 'ppc64le']
depend: >
ca-certificates
fontconfig
freetype
glibc
libjpeg
libpng
libstdc++
libX11
libXext
libXrender
openssl
xorg-x11-fonts-75dpi
xorg-x11-fonts-Type1
zlib
almalinux8:
source: docker/Dockerfile.centos
args:
from: almalinux:8
output: rpm
matrix: ['x86_64', 'aarch64', 'ppc64le']
depend: >
ca-certificates
fontconfig
freetype
glibc
libjpeg
libpng
libstdc++
libX11
libXext
libXrender
openssl
xorg-x11-fonts-75dpi
xorg-x11-fonts-Type1
zlib
centos7:
source: docker/Dockerfile.centos
args:
from: centos:7
output: rpm
matrix: ['x86_64', 'i686', 'aarch64', 'ppc64le']
depend: >
ca-certificates
fontconfig
freetype
glibc
libjpeg
libpng
libstdc++
libX11
libXext
libXrender
openssl
xorg-x11-fonts-75dpi
xorg-x11-fonts-Type1
zlib
fedora37:
source: docker/Dockerfile.centos
args:
from: fedora:37
output: rpm
matrix: ['x86_64', 'aarch64', 'ppc64le']
depend: >
ca-certificates
fontconfig
freetype
glibc
libjpeg
libpng
libstdc++
libX11
libXext
libXrender
openssl
xorg-x11-fonts-75dpi
xorg-x11-fonts-Type1
zlib
archlinux:
source: docker/Dockerfile.archlinux
args:
from: archlinux:latest
output: pacman
matrix: ['amd64']
depend: >
openssl
zlib
fontconfig
freetype2
libjpeg
libpng
libxext
libxrender
amazonlinux2:
source: docker/Dockerfile.centos
args:
from: amazonlinux:2
output: rpm
matrix: ['x86_64', 'aarch64']
depend: >
ca-certificates
fontconfig
freetype
glibc
libjpeg
libpng
libstdc++
libX11
libXext
libXrender
openssl
xorg-x11-fonts-75dpi
xorg-x11-fonts-Type1
zlib
amazonlinux2023:
source: docker/Dockerfile.centos
args:
from: amazonlinux:2023
output: rpm
matrix: ['x86_64', 'aarch64']
depend: >
ca-certificates
fontconfig
freetype
glibc
libjpeg
libpng
libstdc++
libX11
libXext
libXrender
openssl
xorg-x11-fonts-75dpi
xorg-x11-fonts-Type1
zlib
amazonlinux2_lambda:
source: docker/Dockerfile.centos
args:
from: amazonlinux:2
output: lambda_zip
after_compile: amazonlinux2_lambda
arch: x86_64
opensuse.leap15:
source: docker/Dockerfile.opensuse
args:
from: opensuse/leap:15
output: rpm
matrix: ['x86_64', 'aarch64', 'ppc64le']
depend: >
ca-certificates
fontconfig
libfreetype6
glibc
libjpeg8
libpng16-16
libstdc++6
libX11-6
libXext6
libXrender1
openssl
xorg-x11-fonts
libz1
mxe-cross-win32:
source: docker/Dockerfile.mxe
args:
from: debian:buster
target: i686-w64-mingw32.static
qt_config: mingw-w64
cross_compile: i686-w64-mingw32.static-
output: 7z
mxe-cross-win64:
source: docker/Dockerfile.mxe
args:
from: debian:buster
target: x86_64-w64-mingw32.static
qt_config: mingw-w64
cross_compile: x86_64-w64-mingw32.static-
output: 7z
# all targets supported by the vagrant command, keys are as follows:
#
# vm: VM to use for building (defined in vagrant/Vagrantfile)
# qt_config: configuration used in compiling Qt
# home_in_rsync: path of home directory when connecting via rsync
# custom_build: custom build steps plugin (optional, default is vagrant/<vm>.py)
# make: make command (optional, default is make -jNUMPROC)
#
vagrant-targets:
macos-cocoa:
vm: macos
qt_config: macos-cocoa
home_in_rsync: /Users/vagrant
msvc2015-win64:
vm: windows
qt_config: msvc
home_in_rsync: /c/Users/vagrant
make: nmake
msvc_version: "14.0"
msvc_redist: https://download.microsoft.com/download/6/D/F/6DF3FF94-F7F9-4F0B-838C-A328D1A7D0EE/vc_redist.x64.exe
msvc2015-win32:
vm: windows
qt_config: msvc
home_in_rsync: /c/Users/vagrant
make: nmake
msvc_version: "14.0"
msvc_redist: https://download.microsoft.com/download/6/D/F/6DF3FF94-F7F9-4F0B-838C-A328D1A7D0EE/vc_redist.x86.exe
# Qt configure arguments
qt-config:
common: >
-opensource
-confirm-license
-fast
-release
-static
-graphicssystem raster
-webkit
-exceptions
-xmlpatterns
-system-zlib
-system-libpng
-system-libjpeg
-no-libmng
-no-libtiff
-no-accessibility
-no-stl
-no-qt3support
-no-phonon
-no-phonon-backend
-no-opengl
-no-declarative
-no-script
-no-scripttools
-no-sql-db2
-no-sql-ibase
-no-sql-mysql
-no-sql-oci
-no-sql-odbc
-no-sql-psql
-no-sql-sqlite
-no-sql-sqlite2
-no-sql-tds
-no-mmx
-no-3dnow
-no-sse
-no-sse2
-no-multimedia
-nomake demos
-nomake docs
-nomake examples
-nomake tools
-nomake tests
-nomake translations
debug:
-debug
-webkit-debug
docker: >
-silent
-xrender
-largefile
-iconv
-openssl-linked
-no-javascript-jit
-no-rpath
-no-dbus
-no-nis
-no-cups
-no-pch
-no-gtkstyle
-no-nas-sound
-no-sm
-no-xshape
-no-xinerama
-no-xcursor
-no-xfixes
-no-xrandr
-no-mitshm
-no-xinput
-no-xkb
-no-glib
-no-gstreamer
-no-icu
-no-openvg
-no-xsync
-no-audio-backend
-no-sse3
-no-ssse3
-no-sse4.1
-no-sse4.2
-no-avx
-no-neon
mingw-w64: >
-silent
-openssl-linked
-no-reduce-exports
-no-rpath
-no-pch
-xplatform win32-g++-4.6
macos-cocoa: >
-silent
-reduce-exports
-no-framework
-no-dwarf2
-openssl-linked
-largefile
-no-rpath
-cocoa
-platform unsupported/macx-clang-libc++
msvc: >
-mp
-qt-style-windows
-no-style-cleanlooks
-no-style-windowsxp
-no-style-windowsvista
-no-style-plastique
-no-style-motif
-no-style-cde
-openssl-linked
# docker image which provides fpm
fpm-image: wkhtmltopdf/fpm:1.10.2-20221124
# qemu-user-static -- allow overriding the setup for a specific target
qemu-user-static:
default:
image: aptman/qus:d5.0 # chosen because it works with most builds
setup:
- "-- -r"
- "-s -- -p"
almalinux9-ppc64le:
image: aptman/qus:d6.1 # required for POWER 9 support used in image
setup:
- "-- -r"
- "-s -- -p"
# mapping of distro architecture => docker platform
matrix-platforms:
# debian/ubuntu
amd64: linux/amd64
i386: linux/386
armel: linux/arm/v5
armhf: linux/arm/v7
arm64: linux/arm64/v8
ppc64el: linux/ppc64le
s390x: linux/s390x
# centos
x86_64: linux/amd64
i686: linux/386
aarch64: linux/arm64/v8
ppc64le: linux/ppc64le
# parameters for building linux packages via fpm (deb/rpm)
fpm-params:
name: wkhtmltox
description: convert HTML to PDF and various image formats using QtWebkit
license: LGPLv3
vendor: wkhtmltopdf
maintainer: Ashish Kulkarni <[email protected]>
url: https://wkhtmltopdf.org/
prefix: /usr/local
category: utils