Run test-suite on PRs via GitHub Actions; retire Travis#22
Draft
Copilot wants to merge 17 commits into
Draft
Conversation
… and remove gstlog.txt
Copilot created this pull request from a session on behalf of
havardgraff
June 23, 2026 21:09
View session
Copilot
AI
changed the title
Gate upstream-incompatible RTMP tests to get the suite green
Run test-suite on PRs via GitHub Actions; retire Travis
Jun 24, 2026
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.
Wire up CI so the meson test-suite builds and runs on every PR, with all GStreamer/codec dependencies (x264, libav, voaac, speex) provisioned on the runner. The previous Travis config predates the current test-suite and is no longer used.
Changes
.github/workflows/ci.yml(already present on this branch) builds and runs the suite onpull_request, pushes tomaster, andworkflow_dispatch. Installs the full dependency set onubuntu-latest, thenmeson setup -Dtests=enabled→meson compile→meson test, uploadingmeson-logs/as an artifact on all outcomes.concurrencygroup to cancel superseded runs on the same ref..travis.yml— superseded by the Actions workflow.Dependency notes
The codecs the harness instantiates map onto stock apt packages; no separate
x264package is required:x264encgstreamer1.0-plugins-uglyavdec_h264,avdec_aacgstreamer1.0-libavvoaacenc,aacparse,h264parsegstreamer1.0-plugins-badspeexenc/speexdec(optional coverage)gstreamer1.0-plugins-goodTo enable
CI activates once this lands on the default branch. To gate merges, add a branch-protection rule requiring the
build-and-testcheck. Fork PRs need the standard first-run maintainer approval; no secrets are used (workflow iscontents: readonly).