Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,9 +439,15 @@ jobs:
Acquire::Retries "2";
CONF
sudo apt-get update
# The xcb block is what libqxcb.so links: linuxdeploy's qt plugin
# refuses to deploy a platform plugin whose dependencies it cannot
# resolve on the build host.
sudo apt-get install -y --no-install-recommends \
build-essential cmake ninja-build pkg-config \
libsodium-dev libudev-dev libusb-1.0-0-dev \
libxkbcommon-x11-0 libxcb-cursor0 libxcb-icccm4 libxcb-image0 \
libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 \
libxcb-xinerama0 libxcb-xkb1 \
file fakeroot rsync wget curl librsvg2-bin gzip

# Not apt: jammy ships Qt 6.2 and this project's floor is 6.7. The action
Expand Down
3 changes: 2 additions & 1 deletion packaging/flatpak/com.tinkernorth.Dish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ modules:

- name: dish
buildsystem: cmake-ninja
builddir: true
# No builddir here: post-install copies the udev rule by a
# source-relative path, and dish's CMake accepts an in-tree configure.
config-opts:
- -DCMAKE_BUILD_TYPE=Release
- -DDISH_BUILD_TESTS=OFF
Expand Down
3 changes: 2 additions & 1 deletion packaging/flatpak/flathub/com.tinkernorth.Dish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ modules:

- name: dish
buildsystem: cmake-ninja
builddir: true
# No builddir here: post-install copies the udev rule by a
# source-relative path, and dish's CMake accepts an in-tree configure.
config-opts:
- -DCMAKE_BUILD_TYPE=Release
- -DDISH_BUILD_TESTS=OFF
Expand Down
Loading