Fix Linux CI dependency resolution on Ubuntu 24.04 (FreeRDP package names) - #2
Merged
Soar360 merged 2 commits intoJun 29, 2026
Conversation
Copilot
AI
changed the title
[WIP] Fix compilation failure
Fix Linux CI dependency resolution on Ubuntu 24.04 (FreeRDP package names)
Jun 29, 2026
Soar360
marked this pull request as ready for review
June 29, 2026 16:23
There was a problem hiding this comment.
Pull request overview
This PR fixes Linux CI dependency installation on Ubuntu 24.04 by updating FreeRDP 3 APT package names to ones that actually exist on the runner image, and aligns the README Linux build instructions with CI.
Changes:
- Update Linux CI dependencies to install
freerdp3-dev+libwinpr3-dev(remove invalidlibfreerdp3-devand unavailablelibfreerdp-client3-dev). - Update README Linux build instructions to match the corrected dependency list.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
README.md |
Updates Linux build instructions to use freerdp3-dev instead of the non-existent libfreerdp3-dev on Ubuntu 24.04. |
.github/workflows/build.yml |
Fixes Ubuntu 24.04 CI dependency install step by switching to valid FreeRDP 3 dev package names and removing an unavailable package. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Linux CI was failing before compilation because the workflow referenced FreeRDP dev package names that do not exist on Ubuntu 24.04. This PR aligns dependency names with current Ubuntu package metadata and keeps docs consistent with CI.
Root cause addressed
libfreerdp3-devwithfreerdp3-dev.libfreerdp-client3-devfrom CI install list (not available on target runner image).Workflow change
/.github/workflows/build.ymlLinux dependency install step to use valid FreeRDP 3 dev packages onubuntu-24.04.Documentation alignment
/README.mdto match the corrected dependency set used by CI.Original prompt