Conversation
Ubuntu 24.04 ships Qt 6.4 which lacks checkStateChanged (added Qt 6.7). Switch package-linux to the same debian:trixie container used by CI, giving Qt 6.8 and consistent build environment across all jobs. Drop sudo — container runs as root. Add git/ca-certs pre-checkout step matching the existing CI pattern. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
Switch the
package-linuxjob fromubuntu-24.04to adebian:trixiecontainer — the same environment the CI build job already uses successfully.Root cause of compile failure: Ubuntu 24.04 ships Qt 6.4.2, which predates
QCheckBox::checkStateChanged(introduced Qt 6.7). Downgrading the code to match an older Qt is not acceptable; the right fix is to use a modern Qt.Why Trixie: Debian Trixie ships Qt 6.8, builds cleanly (CI proves it every PR), and all dependencies — including qtkeychain, OpenGL, XKB — are already correct Debian packages. No aqtinstall, no source builds, no version drift.
Changes:
runs-on: ubuntu-latest+container: image: debian:trixiegit+ca-certificates+wgetpre-checkout step (required in minimal container, same pattern as CI)sudo— container runs as rootlibgl1-mesa-devandlibxkbcommon-dev— not needed on Trixie (come in transitively)Test plan
v26.6.2tag and confirm Linux AppImage job builds through to artifact upload🤖 Generated with Claude Code