[Lyrical] Install from apt-deb repo instead of dated tarball#1516
Open
minggangw wants to merge 1 commit into
Open
[Lyrical] Install from apt-deb repo instead of dated tarball#1516minggangw wants to merge 1 commit into
minggangw wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions Linux CI/prebuild workflows to install ROS 2 Lyrical via the official apt/deb repository instead of a date-stamped beta tarball, reducing manual maintenance and aligning with upstream installation guidance.
Changes:
- Switch Lyrical installation in Linux x64/arm64 prebuild workflows from tarball extraction to
apt-get install ros-lyrical-desktop. - Switch Lyrical installation in Linux x64/arm64 build-and-test workflows to apt/deb, including
ros-lyrical-test-msgswhere tests require it. - Remove Lyrical-specific tarball URL matrix entries and the associated extract/rosdep steps.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/prebuild-linux-x64.yml | Installs Lyrical ROS via apt and removes the tarball URL/installation path. |
| .github/workflows/prebuild-linux-arm64.yml | Same as x64 prebuild: use apt-based Lyrical install and drop tarball URL usage. |
| .github/workflows/linux-x64-build-and-test.yml | Installs Lyrical via apt (desktop + test-msgs) while keeping Rolling on the nightly tarball path. |
| .github/workflows/linux-arm64-build-and-test.yml | Installs Lyrical via apt (desktop + test-msgs) and removes the prior tarball extraction/rosdep chain. |
💡 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.
Per the official Lyrical install guide (https://docs.ros.org/en/lyrical/Installation/Ubuntu-Install-Debs.html), ROS 2 Lyrical is now available as Debian packages on Ubuntu 26.04. Switch all four Linux workflows to
apt-get install -y ros-lyrical-desktopand drop the date-stamped beta tarball that had to be hand-refreshed every time upstream produced a new snapshot. The test workflows also installros-lyrical-test-msgs;ros-lyrical-mrpt-msgsis omitted because it is not yet published for lyrical (the previous tarball path skipped both packages on lyrical too, so the test suite already tolerates its absence). Removes thecurl | tar xfextract step, therosdep init/update/installchain with its long--skip-keyslist, and thetar,bzip2,python3-rosdeppackages they required. Rolling continues to use the nightly tarball; humble/jazzy/kilted continue to useros-tooling/setup-ros@v0.7, which does not yet recognize lyrical.Fix: #1458