Install Linux CI deps with apt, drop package cache - #58
Merged
Conversation
Replace awalsh128/cache-apt-pkgs-action with sudo apt update/install in validate-desktop and release. The cache action restores packages without running maintainer scripts, which left GTK unconfigured on arm64 and broke linuxdeploy AppImage bundling. Co-authored-by: Demir Yerli <mrquantumoff@users.noreply.github.com>
mrquantumoff
marked this pull request as ready for review
August 24, 2026 17:06
Signed-off-by: Demir Yerli <me@mrquantumoff.dev>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace
awalsh128/cache-apt-pkgs-actionwith plainsudo apt update/sudo apt install -yinvalidate-desktop.ymlandrelease.yml. Do not cache the packages.The cache action restores
.debfiles without registering them through dpkg or running maintainer scripts. On arm64 that left GTK’simmodules.cachemissing, solinuxdeploy-plugin-gtkfailed while bundling the AppImage (failed to run linuxdeploy). A realapt installruns those scripts and configures the packages fully.Package lists are unchanged:
libwebkit2gtk-4.1-dev xdg-utils libappindicator3-dev librsvg2-dev patchelf libsecret-1-devappstream desktop-file-utilsRust crate caching (
Swatinem/rust-cache) is unaffected.