Mercurial > minori
annotate .builds/linux.yml @ 361:d1d772665a07
CI/linux: install binaries into appdir
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 15 Jul 2024 01:14:13 -0400 |
parents | 6ca952f6a95c |
children | 433eeaca3baf |
rev | line source |
---|---|
125
4067388485c1
builds: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
124
diff
changeset
|
1 image: debian/bookworm |
35
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
2 packages: |
125
4067388485c1
builds: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
124
diff
changeset
|
3 - qtbase5-dev |
127
fb6033e8f872
builds: qttools5-dev-tools -> qttools5-dev
Paper <mrpapersonic@gmail.com>
parents:
125
diff
changeset
|
4 - qttools5-dev |
344 | 5 - cmake |
125
4067388485c1
builds: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
124
diff
changeset
|
6 - clang |
4067388485c1
builds: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
124
diff
changeset
|
7 - libcurl4-openssl-dev |
128
859d2a957940
cmake: set CXX_STANDARD to 17
Paper <mrpapersonic@gmail.com>
parents:
127
diff
changeset
|
8 - wget |
129
15eae944c58e
builds/linux: appimage requires FUSE
Paper <mrpapersonic@gmail.com>
parents:
128
diff
changeset
|
9 - fuse |
132
c2dab54abc79
builds/linux: add missing `file` dependency
Paper <mrpapersonic@gmail.com>
parents:
130
diff
changeset
|
10 - file |
344 | 11 - libxcb1-dev |
12 - libxcb-res0-dev | |
200
da91af31ae73
ci/linux: grab wayland headers to bundle in the AppImage
Paper <mrpapersonic@gmail.com>
parents:
159
diff
changeset
|
13 - libwayland-dev |
159
36feb332b7c7
builds/linux: install xorg dev headers and pkg-config
Paper <mrpapersonic@gmail.com>
parents:
132
diff
changeset
|
14 - pkg-config |
238 | 15 - libglib2.0-dev |
360
6ca952f6a95c
CI/linux: need desktop-file-utils package
Paper <paper@paper.us.eu.org>
parents:
359
diff
changeset
|
16 - desktop-file-utils |
35
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
17 tasks: |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
18 - build: | |
237 | 19 # build |
35
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
20 cd minori |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
21 mkdir build |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
22 cd build |
361
d1d772665a07
CI/linux: install binaries into appdir
Paper <paper@paper.us.eu.org>
parents:
360
diff
changeset
|
23 cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr |
35
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
24 make |
361
d1d772665a07
CI/linux: install binaries into appdir
Paper <paper@paper.us.eu.org>
parents:
360
diff
changeset
|
25 make DESTDIR=AppDir install |
124
4c812fdf82a6
linux: add material for creating appimages, upload artifacts after CI build
Paper <mrpapersonic@gmail.com>
parents:
111
diff
changeset
|
26 |
237 | 27 # resources |
28 mkdir -p rc | |
258 | 29 cp ../rc/sys/linux/Minori.desktop rc/Minori.desktop |
311
fb0f6b5050ff
linux: add required blank svg icon (???)
Paper <paper@paper.us.eu.org>
parents:
309
diff
changeset
|
30 cp ../rc/sys/linux/Minori.svg rc/Minori.svg |
237 | 31 |
357
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
32 # use linuxdeployqt to make an appimage |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
33 wget -O linuxdeployqt "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
34 chmod +x linuxdeployqt |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
35 |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
36 mkdir -p AppDir/usr/bin |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
37 mkdir -p AppDir/usr/lib |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
38 mkdir -p AppDir/usr/share/applications |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
39 mkdir -p AppDir/usr/share/icons/hicolor/scalable/apps |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
40 |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
41 cp ../rc/sys/linux/Minori.svg AppDir/Minori.svg |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
42 cp ../rc/sys/linux/Minori.desktop AppDir/usr/share/applications/Minori.desktop |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
43 cp minori AppDir/usr/bin/minori |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
44 |
359
4e0e17d3c67a
CI/linux: ignore linuxdeployqt silently failing
Paper <paper@paper.us.eu.org>
parents:
358
diff
changeset
|
45 # hack: need to ignore linuxdeployqt silently failing due to missing appimagetool. |
4e0e17d3c67a
CI/linux: ignore linuxdeployqt silently failing
Paper <paper@paper.us.eu.org>
parents:
358
diff
changeset
|
46 # additionally, because of that we have to roll appimagetool ourselves |
4e0e17d3c67a
CI/linux: ignore linuxdeployqt silently failing
Paper <paper@paper.us.eu.org>
parents:
358
diff
changeset
|
47 ./linuxdeployqt AppDir/usr/share/applications/Minori.desktop -unsupported-allow-new-glibc -appimage || true |
357
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
48 |
359
4e0e17d3c67a
CI/linux: ignore linuxdeployqt silently failing
Paper <paper@paper.us.eu.org>
parents:
358
diff
changeset
|
49 # ack |
357
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
50 wget -O appimagetool "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage" |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
51 chmod +x appimagetool |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
52 |
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
53 ./appimagetool AppDir minori-x86_64.AppImage |
124
4c812fdf82a6
linux: add material for creating appimages, upload artifacts after CI build
Paper <mrpapersonic@gmail.com>
parents:
111
diff
changeset
|
54 artifacts: |
357
ab77d65f23cd
builds/linux: linuxdeploy fails now for some reason
Paper <paper@paper.us.eu.org>
parents:
344
diff
changeset
|
55 - minori/build/minori-x86_64.AppImage |
35
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
56 triggers: |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
57 - action: email |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
23
diff
changeset
|
58 condition: failure |
246
f475e168fac8
CI: add experimental windows build
Paper <paper@paper.us.eu.org>
parents:
241
diff
changeset
|
59 to: Paper <paper@paper.us.eu.org> |