Conversation
Native cargo builds require gstreamer-1.0 and gstreamer-app-1.0 pkg-config modules after the media-preview crate deps landed. Teach start-dev.sh and the contributor setup docs to install those development libraries. Co-authored-by: wmfeht <wmfeht@proton.me>
github-actions
Bot
force-pushed
the
main
branch
2 times, most recently
from
September 20, 2026 05:00
51fba50 to
b415eb6
Compare
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.
Description
Cloud Agent recurring builds fail during
cargo build --all-targetsbecause the environment install script installs GStreamer plugins but not the development headers thatgstreamer-sysneeds via pkg-config.This change teaches
scripts/start-dev.sh(and the contributor setup docs) to install those headers on Arch, Debian/Ubuntu, and Fedora, matching the packages already used bytests/e2e/Dockerfileand the release workflow.Visual evidence
N/A — this is a development-dependency installer and docs change with no user-visible UI.
How to test
pkg-config --exists gstreamer-1.0fails../scripts/start-dev.sh(ormise run start-dev) and allow it to install native dependencies.pkg-config --modversion gstreamer-1.0andpkg-config --modversion gstreamer-app-1.0both report 1.20 or newer, and that the watcher can start a nativecargobuild.Expected result: Native development setup installs GStreamer 1.20+ core and app/base development libraries, and
cargocan compile thegstreamer/gstreamer-appcrates.Related issue
N/A — this unblocks native
start-devafter the media-preview GStreamer dependency landed in lgse#839. The personal Cloud Agent environment install is updated separately (dashboard Save): addlibgstreamer1.0-devandlibgstreamer-plugins-base1.0-dev, restore GCC ascc/c++sounrar_sysdoes not compile with Clang's-stdlib=libc++, and drop the install-time E2E image build (wrong Docker context).