-
-
Notifications
You must be signed in to change notification settings - Fork 493
625 lines (557 loc) · 23.9 KB
/
build-release-qt6.yml
File metadata and controls
625 lines (557 loc) · 23.9 KB
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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
name: Build release of QOwnNotes Qt6
on:
push:
branches-ignore:
- release
tags-ignore:
- "*"
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-paths
paths:
- "src/**"
- "tests/**"
- ".github/workflows/build-release-qt6.yml"
- "build-systems/github/snap.qt6/**"
- "build-systems/github/macos/create-dmg-qt6.sh"
- "build-systems/github/windows/build-zip-qt6.ps1"
# For testing also on pull requests
pull_request:
paths:
- "src/**"
- "tests/**"
- ".github/workflows/build-release-qt6.yml"
- "build-systems/github/snap.qt6/**"
- "build-systems/github/macos/create-dmg-qt6.sh"
- "build-systems/github/windows/build-zip-qt6.ps1"
workflow_dispatch:
defaults:
run:
working-directory: src
#--------------------------------------------------------------------------------
# Define application name & version
#--------------------------------------------------------------------------------
env:
EXECUTABLE: "QOwnNotes"
APPLICATION: "QOwnNotes"
UNIXNAME: "QOwnNotes"
QMAKE_PROJECT: "QOwnNotes.pro"
PUBLISHER: "Patrizio Bekerle"
REPO_DIR: "/home/runner/work/QOwnNotes"
QT_MODULES: "qtwebsockets"
QMAKE: qmake6
CORES: 16
jobs:
create_release:
name: "🗃️️ Prepare release"
permissions:
contents: write # for actions/create-release to create a release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
release_id: ${{ steps.create_release.outputs.id }}
steps:
- uses: actions/checkout@v6
- name: Set Env
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
#export TAG=v${VERSION}.${GITHUB_RUN_ID}.${GITHUB_RUN_NUMBER}
export TAG=v${VERSION}
export RELEASE_TEXT=$(grep -Pzo "## ${VERSION}\n(\n|.)+?\n##" ../CHANGELOG.md | sed '$ d')
echo "VERSION=${VERSION}" >> $GITHUB_ENV
echo "TAG=${TAG}" >> $GITHUB_ENV
# add multiline release text
echo "RELEASE_TEXT<<EOF" >> $GITHUB_ENV
echo "${RELEASE_TEXT}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Printenv
run: |
echo "VERSION=${VERSION}"
echo "TAG=${TAG}"
echo "RELEASE_TEXT=${RELEASE_TEXT}"
printenv
# - name: Create release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ env.TAG }}
# release_name: Release v${{ env.VERSION }}
# body: ${{ env.RELEASE_TEXT }}
# draft: true
# prerelease: false
#--------------------------------------------------------------------------------
# Workflow jobs (GNU/Linux, macOS & Windows)
#--------------------------------------------------------------------------------
#
# AppImage build
#
build-appimage-qt5:
needs: create_release
runs-on: ubuntu-22.04
env:
QT_VERSION: 5.15.2
QT_MODULES: ""
QMAKE: qmake
BUILD_DIR: build
APPIMAGE_NAME: "QOwnNotes-x86_64.AppImage"
name: "🐧 AppImage Qt 5.15.2"
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v6
with:
submodules: recursive
- name: "⚙️ Install Qt"
uses: jurplel/install-qt-action@v4
with:
version: ${{env.QT_VERSION}}
modules: ${{env.QT_MODULES}}
aqtversion: "==2.0.0"
cache: true
- name: "⚙️ Install dependencies"
run: |
sudo apt-get update
sudo apt install libfuse2 desktop-file-utils libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xinerama0 libxcb-composite0 libxcb-cursor0 libxcb-damage0 libxcb-dpms0 libxcb-dri2-0 libxcb-dri3-0 libxcb-ewmh2 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-record0 libxcb-render0 libxcb-res0 libxcb-screensaver0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxkbcommon-x11-0
- name: "🚧 Compile application"
run: |
echo "#define RELEASE \"AppImage\"" > release.h
${{env.QMAKE}} ${{env.QMAKE_PROJECT}} CONFIG+=release PREFIX=/usr
lrelease QOwnNotes.pro
make -j${{env.CORES}}
- name: "⚙️ Install linuxdeploy"
run: |
export LINUXDEPLOY_VERSION=1-alpha-20240109-1
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/${LINUXDEPLOY_VERSION}/linuxdeploy-x86_64.AppImage
wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/${LINUXDEPLOY_VERSION}/linuxdeploy-plugin-qt-x86_64.AppImage
chmod +x linuxdeploy-x86_64.AppImage
chmod +x linuxdeploy-plugin-qt-x86_64.AppImage
- name: "🔐 Prepare OpenSSL 1.1 runtime"
run: |
echo "deb http://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
sudo apt-get update
apt download libssl1.1
mkdir -p openssl-1.1
dpkg-deb -x libssl1.1_*.deb openssl-1.1
- name: "📦 Create AppImage"
run: |
QT_DIR=${{env.REPO_DIR}}/Qt/${{env.QT_VERSION}}/gcc_64
export QMAKE=${QT_DIR}/bin/${{env.QMAKE}}
export PATH=${QT_DIR}/libexec:$PATH
export EXTRA_QT_PLUGINS="svg;"
export EXTRA_PLATFORM_PLUGINS="libqwayland-egl.so;libqwayland-generic.so"
copy_qt_plugin_dir() {
local plugin_dir="$1"
if [ -d "${QT_DIR}/plugins/${plugin_dir}" ]; then
mkdir -p "${{env.BUILD_DIR}}/usr/plugins/${plugin_dir}"
cp -a "${QT_DIR}/plugins/${plugin_dir}/." "${{env.BUILD_DIR}}/usr/plugins/${plugin_dir}/"
fi
}
assert_wayland_platform_plugins() {
test -f "${{env.BUILD_DIR}}/usr/plugins/platforms/libqwayland-egl.so"
test -f "${{env.BUILD_DIR}}/usr/plugins/platforms/libqwayland-generic.so"
}
cp ../icons/icon.png QOwnNotes.png
./linuxdeploy-x86_64.AppImage --appdir ${{env.BUILD_DIR}} -e ${{env.UNIXNAME}} -i ${{env.UNIXNAME}}.png -d PBE.QOwnNotes.desktop --plugin qt
mkdir -p ${{env.BUILD_DIR}}/usr/languages && cp -r languages/*.qm ${{env.BUILD_DIR}}/usr/languages
mkdir -p ${{env.BUILD_DIR}}/usr/lib
cp -L openssl-1.1/usr/lib/x86_64-linux-gnu/libssl.so.1.1 ${{env.BUILD_DIR}}/usr/lib/
cp -L openssl-1.1/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 ${{env.BUILD_DIR}}/usr/lib/
# linuxdeploy-plugin-qt only deploys xcb by default, so copy the Wayland
# platform and helper plugins explicitly for Wayland-only systems.
copy_qt_plugin_dir platforms
copy_qt_plugin_dir wayland-decoration-client
copy_qt_plugin_dir wayland-graphics-integration-client
copy_qt_plugin_dir wayland-shell-integration
assert_wayland_platform_plugins
find ${{env.BUILD_DIR}}
./linuxdeploy-x86_64.AppImage --appdir ${{env.BUILD_DIR}} --output appimage
rm linuxdeploy-x86_64.AppImage
rm linuxdeploy-plugin-qt-x86_64.AppImage
mv *.AppImage ${{env.APPIMAGE_NAME}} || true
sha256sum ${{env.APPIMAGE_NAME}} > ${{env.APPIMAGE_NAME}}.sha256sum
ls -hal *.AppImage
- name: "📤 Upload artifact: AppImage"
uses: actions/upload-artifact@v7
with:
name: ${{env.APPIMAGE_NAME}}
path: src/${{env.APPIMAGE_NAME}}
- name: "📤 Upload artifact: AppImage sha256sum"
uses: actions/upload-artifact@v7
with:
name: ${{env.APPIMAGE_NAME}}.sha256sum
path: src/${{env.APPIMAGE_NAME}}.sha256sum
build-appimage:
needs: create_release
runs-on: ubuntu-22.04
env:
# aqt Qt versions: https://ddalcino.github.io/aqt-list-server/
# Qt 6.10.0, 6.9.1, 6.8.3, 6.7.3, 6.6.3: ERROR: Could not find dependency: libmimerapi.so
QT_VERSION: 6.10.2
# qtwaylandcompositor provides the Wayland platform plugins (libqwayland-egl.so, libqwayland-generic.so)
QT_MODULES: "qtwebsockets qtwaylandcompositor"
BUILD_DIR: build
APPIMAGE_NAME: "QOwnNotes-x86_64-Qt6.AppImage"
name: "🐧 AppImage Ubuntu 22.04"
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v6
with:
submodules: recursive
- name: "⚙️ Install Qt"
uses: jurplel/install-qt-action@v4
with:
version: ${{env.QT_VERSION}}
modules: ${{env.QT_MODULES}}
cache: true
- name: "⚙️ Install dependencies"
run: |
sudo apt-get update
# sudo apt-get install libgl1-mesa-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xinerama0 libzstd-dev
sudo apt install libfuse2 desktop-file-utils libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xinerama0 libxcb-composite0 libxcb-cursor0 libxcb-damage0 libxcb-dpms0 libxcb-dri2-0 libxcb-dri3-0 libxcb-ewmh2 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-record0 libxcb-render0 libxcb-res0 libxcb-screensaver0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util1 libxkbcommon-x11-0
- name: "🚧 Compile application"
run: |
echo "#define RELEASE \"AppImage\"" > release.h
${{env.QMAKE}} ${{env.QMAKE_PROJECT}} CONFIG+=release PREFIX=/usr
lrelease QOwnNotes.pro
make -j${{env.CORES}}
- name: "⚙️ Install linuxdeploy"
run: |
export LINUXDEPLOY_VERSION=1-alpha-20240109-1
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/${LINUXDEPLOY_VERSION}/linuxdeploy-x86_64.AppImage
wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/${LINUXDEPLOY_VERSION}/linuxdeploy-plugin-qt-x86_64.AppImage
chmod +x linuxdeploy-x86_64.AppImage
chmod +x linuxdeploy-plugin-qt-x86_64.AppImage
- name: "📦 Create AppImage"
run: |
export QMAKE=${{env.REPO_DIR}}/Qt/${{env.QT_VERSION}}/gcc_64/bin/${{env.QMAKE}}
export PATH=${{env.REPO_DIR}}/Qt/${{env.QT_VERSION}}/gcc_64/libexec:$PATH
QT_DIR=${{env.REPO_DIR}}/Qt/${{env.QT_VERSION}}/gcc_64
# Qt 6.10+ unified the Wayland platform plugins into a single libqwayland.so
# (older versions shipped libqwayland-egl.so and libqwayland-generic.so separately)
export EXTRA_PLATFORM_PLUGINS="libqwayland.so"
copy_qt_plugin_dir() {
local plugin_dir="$1"
if [ -d "${QT_DIR}/plugins/${plugin_dir}" ]; then
mkdir -p "${{env.BUILD_DIR}}/usr/plugins/${plugin_dir}"
cp -a "${QT_DIR}/plugins/${plugin_dir}/." "${{env.BUILD_DIR}}/usr/plugins/${plugin_dir}/"
fi
}
assert_wayland_platform_plugins() {
test -f "${{env.BUILD_DIR}}/usr/plugins/platforms/libqwayland.so"
}
# Set the extra Qt modules to include (Quick is needed by the Qt6 build's script engine)
export EXTRA_QT_MODULES="Qml;QmlWorkerScript;QmlModels;Quick"
# Tell linuxdeploy-plugin-qt where to find QML files so it scans and
# bundles the QML import modules (QtQml, QtQuick, etc.) that the
# QQmlEngine needs at runtime for user scripts.
# We point it at our example scripts which all do "import QtQml 2.0".
export QML_SOURCES_PATHS="../docs/scripting/examples"
export QML_MODULES_PATHS="${QT_DIR}/qml"
cp ../icons/icon.png QOwnNotes.png
# Remove SQL driver plugins that require external client libraries
# (Oracle, MySQL, PostgreSQL, etc.) which are not available in the
# build environment. QOwnNotes only needs the SQLite driver.
find "${QT_DIR}/plugins/sqldrivers" -name '*.so' ! -name '*sqlite*' -delete || true
# Copy additional resources
mkdir -p ${{env.BUILD_DIR}}/usr/plugins/iconengines && cp -r ${QT_DIR}/plugins/iconengines/libqsvgicon.so ${{env.BUILD_DIR}}/usr/plugins/iconengines
mkdir -p ${{env.BUILD_DIR}}/usr/languages && cp -r languages/*.qm ${{env.BUILD_DIR}}/usr/languages
./linuxdeploy-x86_64.AppImage \
--appdir ${{env.BUILD_DIR}} \
-e ${{env.UNIXNAME}} \
-i ${{env.UNIXNAME}}.png \
-d PBE.QOwnNotes.desktop \
--plugin qt
# linuxdeploy-plugin-qt only deploys xcb by default, so copy the Wayland
# platform and helper plugins explicitly for Wayland-only systems.
copy_qt_plugin_dir platforms
copy_qt_plugin_dir wayland-decoration-client
copy_qt_plugin_dir wayland-graphics-integration-client
copy_qt_plugin_dir wayland-shell-integration
assert_wayland_platform_plugins
# Ensure QML import directories are present in the AppImage.
# linuxdeploy-plugin-qt should deploy them via QML_SOURCES_PATHS,
# but we copy them explicitly as a safety net so "import QtQml 2.0"
# always resolves from within the bundle instead of the host system.
QML_DEST=${{env.BUILD_DIR}}/usr/qml
for mod in QtQml QtQuick QtQml/WorkerScript; do
if [ -d "${QT_DIR}/qml/${mod}" ] && [ ! -d "${QML_DEST}/${mod}" ]; then
mkdir -p "${QML_DEST}/${mod}"
cp -a "${QT_DIR}/qml/${mod}/." "${QML_DEST}/${mod}/"
fi
done
# Write qt.conf AFTER linuxdeploy to ensure it is not overwritten.
# This forces Qt to load plugins and QML imports from the AppImage bundle
# instead of from the host system (e.g. Nix store paths).
cat > ${{env.BUILD_DIR}}/usr/bin/qt.conf <<'QTCONF'
[Paths]
Prefix = ..
Plugins = plugins
Qml2Imports = qml
QmlImports = qml
QTCONF
# Strip leading whitespace that YAML indentation adds to the heredoc
sed -i 's/^[[:space:]]*//' ${{env.BUILD_DIR}}/usr/bin/qt.conf
# Bundle OpenSSL libraries explicitly so QtNetwork keeps working in the AppImage
# even when the target system exposes a different OpenSSL runtime.
mkdir -p ${{env.BUILD_DIR}}/usr/lib
cp -L /usr/lib/x86_64-linux-gnu/libssl.so.3 ${{env.BUILD_DIR}}/usr/lib/
cp -L /usr/lib/x86_64-linux-gnu/libcrypto.so.3 ${{env.BUILD_DIR}}/usr/lib/
find ${{env.BUILD_DIR}}
./linuxdeploy-x86_64.AppImage --appdir ${{env.BUILD_DIR}} --output appimage
# Cleanup
rm linuxdeploy-x86_64.AppImage linuxdeploy-plugin-qt-x86_64.AppImage
mv *.AppImage ${{env.APPIMAGE_NAME}} ||:
sha256sum ${{env.APPIMAGE_NAME}} > ${{env.APPIMAGE_NAME}}.sha256sum
ls -hal *.AppImage
- name: "📤 Upload artifact: AppImage"
uses: actions/upload-artifact@v7
with:
name: ${{env.APPIMAGE_NAME}}
path: src/${{env.APPIMAGE_NAME}}
- name: "📤 Upload artifact: AppImage sha256sum"
uses: actions/upload-artifact@v7
with:
name: ${{env.APPIMAGE_NAME}}.sha256sum
path: src/${{env.APPIMAGE_NAME}}.sha256sum
# - name: '📤 Release AppImage for Linux'
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: ./src/QOwnNotes-x86_64.AppImage
# asset_name: QOwnNotes-x86_64.AppImage
# asset_content_type: application/vnd.appimage
# - name: '📤 Release AppImage sha256sum'
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: ./src/QOwnNotes-x86_64.AppImage.sha256sum
# asset_name: QOwnNotes-x86_64.AppImage.sha256sum
# asset_content_type: text/plain
#
# Snap build
#
build-snap:
needs: create_release
runs-on: ubuntu-latest
env:
QT_VERSION: 6.10.2
# continue-on-error: true
name: "🐧 Snap Ubuntu 24.04"
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v6
with:
submodules: recursive
- name: "⚙️ Set Env"
shell: bash
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: "⚙️ Install Qt"
uses: jurplel/install-qt-action@v4
with:
version: ${{env.QT_VERSION}}
modules: ${{env.QT_MODULES}}
cache: true
- name: "⚙️ Printenv"
shell: bash
run: |
echo "VERSION=${VERSION}"
printenv
- name: "🚧 Compile application"
# https://github.com/snapcore/action-build
uses: snapcore/action-build@v1
id: snapcraft
with:
path: build-systems/github/snap.qt6
- name: "🔎 Verify snap artifact"
shell: bash
run: |
SNAP_PATH="${{ steps.snapcraft.outputs.snap }}"
if [ -z "${SNAP_PATH}" ]; then
echo "::error::snapcore/action-build did not return a snap artifact path"
exit 1
fi
case "${SNAP_PATH}" in
/*) ;;
*) SNAP_PATH="${GITHUB_WORKSPACE}/${SNAP_PATH}" ;;
esac
if [ ! -f "${SNAP_PATH}" ]; then
echo "::error::Built snap not found at ${SNAP_PATH}"
echo "::group::Available snap files"
find "$GITHUB_WORKSPACE" -name '*.snap' -print || true
echo "::endgroup::"
exit 1
fi
SNAP_NAME="$(basename "${SNAP_PATH}")"
SNAP_SHA256_PATH="${SNAP_PATH}.sha256sum"
echo "SNAP_PATH=${SNAP_PATH}" >> "$GITHUB_ENV"
echo "SNAP_NAME=${SNAP_NAME}" >> "$GITHUB_ENV"
sha256sum "${SNAP_PATH}" > "${SNAP_SHA256_PATH}"
echo "SNAP_SHA256_PATH=${SNAP_SHA256_PATH}" >> "$GITHUB_ENV"
ls -hal "${SNAP_PATH}" "${SNAP_SHA256_PATH}"
# - name: Release Snap for Linux
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: ./build-systems/github/snap.qt6/qownnotes_${{ env.VERSION }}_amd64.snap
# asset_name: QOwnNotes-amd64.snap
# asset_content_type: application/octet-stream
# - shell: bash
# run: |
# snapcraft --version
# cd .. && pwd
# - name: Deploy Snap
# uses: snapcore/action-publish@v1
# continue-on-error: true
# env:
# # `snapcraft export-login --snaps=qownnotes --acls package_access,package_push,package_update,package_release -`, token valid for one year
# SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN_GH }}
# with:
# snap: /home/runner/work/QOwnNotes/QOwnNotes/build-systems/github/snap.qt6/qownnotes_${{ env.VERSION }}_amd64.snap
# release: stable
- name: "📤 Upload artifact: Snap"
uses: actions/upload-artifact@v7
with:
name: ${{ env.SNAP_NAME }}
path: ${{ env.SNAP_PATH }}
if-no-files-found: error
- name: "📤 Upload artifact: Snap sha256sum"
uses: actions/upload-artifact@v7
with:
name: ${{ env.SNAP_NAME }}.sha256sum
path: ${{ env.SNAP_SHA256_PATH }}
if-no-files-found: error
#
# Windows build
#
build-windows:
name: "🧊 Windows Server 2025"
needs: create_release
runs-on: windows-2025
env:
# Qt 6.5: windeployqt doesn't deploy DLLs!
# Qt 6.10.0, 6.9.1, 6.8.3: Graphical issues with checkboxes in the settings dialog (fixed now)
QT_VERSION: 6.10.1
continue-on-error: true
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v6
with:
submodules: recursive
- name: "⚙️ Install Qt"
uses: jurplel/install-qt-action@v4
with:
version: ${{env.QT_VERSION}}
# https://download.qt.io/online/qtsdkrepository/windows_x86/desktop/qt6_650/qt.qt6.650.win64_mingw/
# https://aqtinstall.readthedocs.io/en/latest/getting_started.html
# https://ddalcino.github.io/aqt-list-server/
modules: ${{env.QT_MODULES}}
cache: true
- name: "⚙️ Set Env"
shell: bash
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: Make sure MSVC is found
uses: ilammy/msvc-dev-cmd@v1
- name: "⚙️ Printenv"
shell: bash
run: |
echo "VERSION=${VERSION}"
printenv
- name: "🚧 Compile application"
run: '& ..\build-systems\github\windows\build-zip-qt6.ps1'
- name: "📤 Upload artifact: Windows"
uses: actions/upload-artifact@v7
with:
name: QOwnNotes.zip
path: QOwnNotes.zip
- name: "📤 Upload artifact: Windows sha256sum"
uses: actions/upload-artifact@v7
with:
name: QOwnNotes.zip.sha256
path: QOwnNotes.zip.sha256
- name: "📤 Upload artifact: Windows clickable sha256sum"
uses: actions/upload-artifact@v7
with:
name: QOwnNotes.zip.sha256sum
path: QOwnNotes.zip.sha256sum
# - name: '📤 Release ZIP'
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: QOwnNotes.zip
# asset_name: QOwnNotes.zip
# asset_content_type: application/zip
# - name: '📤 Release sha256 sum'
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: QOwnNotes.zip.sha256
# asset_name: QOwnNotes.zip.sha256
# asset_content_type: text/plain
#
# macOS build
#
build-macos:
name: "🍎 macOS"
needs: create_release
runs-on: macos-15
env:
# Qt 6.5 doesn't support macOS 10 anymore!
QT_VERSION: 6.10.1
continue-on-error: true
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v6
with:
submodules: recursive
# https://download.qt.io/online/qtsdkrepository/mac_x64/desktop/
- name: "⚙️ Install Qt"
uses: jurplel/install-qt-action@v4
with:
version: ${{env.QT_VERSION}}
modules: ${{env.QT_MODULES}}
cache: true
- name: "⚙️ Set Env"
shell: bash
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: "⚙️ Printenv"
shell: bash
run: |
echo "VERSION=${VERSION}"
printenv
- name: "🚧 Compile application"
run: |
echo "#define RELEASE \"GitHub Actions\"" > release.h
lrelease QOwnNotes.pro
#ls ${Qt5_Dir}/bin
${{env.QMAKE}} QOwnNotes.pro CONFIG+=release QMAKE_APPLE_DEVICE_ARCHS="x86_64 arm64"
make -j ${{env.CORES}}
../build-systems/github/macos/create-dmg-qt6.sh
- name: "📤 Upload artifact: macOS"
uses: actions/upload-artifact@v7
with:
name: QOwnNotes.dmg
path: src/QOwnNotes.dmg
# - name: '📤 Release DMG'
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: src/QOwnNotes.dmg
# asset_name: QOwnNotes.dmg
# asset_content_type: application/x-apple-diskimage