Most of these are extremely common in distributions now, so packagers don't have much need for our in-tree versions - most don't even use them as is With our move to vcpkg for Windows/macOS, we also don't have a need for them. So time to say goodbye! Signed-off-by: Seth Flynn <getchoo@tuta.io>
68 lines
3.5 KiB
YAML
68 lines
3.5 KiB
YAML
name: Setup Linux dependencies
|
|
|
|
runs:
|
|
using: composite
|
|
|
|
steps:
|
|
- name: Install host dependencies
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get -y update
|
|
sudo apt-get -y install \
|
|
dpkg-dev \
|
|
ninja-build extra-cmake-modules pkg-config scdoc \
|
|
cmark libarchive-dev libcmark-dev libqrencode-dev zlib1g-dev \
|
|
appstream libxcb-cursor-dev
|
|
|
|
# TODO(@getchoo): Install with the above when all targets use Ubuntu 24.04
|
|
- name: Install tomlplusplus
|
|
if: ${{ runner.arch == 'ARM64' }}
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get -y install libtomlplusplus-dev
|
|
|
|
# FIXME(@getchoo): THIS IS HORRIBLE TO DO!
|
|
# Install tomlplusplus from Ubuntu 24.04, since it never got backported to 22.04
|
|
# I've done too much to continue keeping this as a submodule....
|
|
- name: Install tomlplusplus from 24.04
|
|
if: ${{ runner.arch != 'ARM64' }}
|
|
shell: bash
|
|
run: |
|
|
deb_arch="$(dpkg-architecture -q DEB_HOST_ARCH)"
|
|
curl -Lo libtomlplusplus-dev.deb http://mirrors.kernel.org/ubuntu/pool/universe/t/tomlplusplus/libtomlplusplus-dev_3.4.0+ds-0.2build1_"$deb_arch".deb
|
|
curl -Lo libtomlplusplus3t64.deb http://mirrors.kernel.org/ubuntu/pool/universe/t/tomlplusplus/libtomlplusplus3t64_3.4.0+ds-0.2build1_"$deb_arch".deb
|
|
sudo dpkg -i libtomlplusplus3t64.deb
|
|
sudo dpkg -i libtomlplusplus-dev.deb
|
|
rm *.deb
|
|
sudo apt-get install -f
|
|
|
|
- name: Setup AppImage tooling
|
|
shell: bash
|
|
run: |
|
|
declare -A appimage_deps
|
|
|
|
deb_arch="$(dpkg-architecture -q DEB_HOST_ARCH)"
|
|
case "$deb_arch" in
|
|
"amd64")
|
|
appimage_deps["https://github.com/linuxdeploy/linuxdeploy/releases/download/1-alpha-20250213-2/linuxdeploy-x86_64.AppImage"]="4648f278ab3ef31f819e67c30d50f462640e5365a77637d7e6f2ad9fd0b4522a linuxdeploy-x86_64.AppImage"
|
|
appimage_deps["https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/1-alpha-20250213-1/linuxdeploy-plugin-qt-x86_64.AppImage"]="15106be885c1c48a021198e7e1e9a48ce9d02a86dd0a1848f00bdbf3c1c92724 linuxdeploy-plugin-qt-x86_64.AppImage"
|
|
appimage_deps["https://github.com/AppImageCommunity/AppImageUpdate/releases/download/2.0.0-alpha-1-20241225/AppImageUpdate-x86_64.AppImage"]="f1747cf60058e99f1bb9099ee9787d16c10241313b7acec81810ea1b1e568c11 AppImageUpdate-x86_64.AppImage"
|
|
;;
|
|
"arm64")
|
|
appimage_deps["https://github.com/linuxdeploy/linuxdeploy/releases/download/1-alpha-20250213-2/linuxdeploy-aarch64.AppImage"]="06706ac8189797dccd36bd384105892cb5e6e71f784f4df526cc958adc223cd6 linuxdeploy-aarch64.AppImage"
|
|
appimage_deps["https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/1-alpha-20250213-1/linuxdeploy-plugin-qt-aarch64.AppImage"]="bf1c24aff6d749b5cf423afad6f15abd4440f81dec1aab95706b25f6667cdcf1 linuxdeploy-plugin-qt-aarch64.AppImage"
|
|
appimage_deps["https://github.com/AppImageCommunity/AppImageUpdate/releases/download/2.0.0-alpha-1-20241225/AppImageUpdate-aarch64.AppImage"]="cf27f810dfe5eda41f130769e4a4b562b9d93665371c15ebeffb84ee06a41550 AppImageUpdate-aarch64.AppImage"
|
|
;;
|
|
*)
|
|
echo "# 🚨 The Debian architecture \"$deb_arch\" is not recognized!" >> "$GITHUB_STEP_SUMMARY"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
for url in "${!appimage_deps[@]}"; do
|
|
curl -LO "$url"
|
|
sha256sum -c - <<< "${appimage_deps[$url]}"
|
|
done
|
|
|
|
sudo apt -y install libopengl0
|