-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329 from christian-rauch/ci_bloom
test blooming on the CI
- Loading branch information
Showing
4 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: bloom | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_linux: | ||
name: "Ubuntu (${{ matrix.ros_distribution }})" | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- docker_image: ubuntu:20.04 | ||
ros_distribution: noetic | ||
|
||
- docker_image: ubuntu:22.04 | ||
ros_distribution: humble | ||
|
||
- docker_image: ubuntu:24.04 | ||
ros_distribution: jazzy | ||
|
||
container: | ||
image: ${{ matrix.docker_image }} | ||
|
||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
|
||
steps: | ||
- name: install core dependencies | ||
run: | | ||
apt update | ||
apt install -y --no-install-recommends git ca-certificates | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: ros-tooling/[email protected] | ||
|
||
- name: install build tool dependencies | ||
run: | | ||
apt install -y --no-install-recommends devscripts equivs python3-bloom | ||
- name: bloom | ||
run: | | ||
rosdep update | ||
bloom-generate rosdebian --ros-distro ${{ matrix.ros_distribution }} | ||
mk-build-deps | ||
apt install -y --no-install-recommends ./ros-${{ matrix.ros_distribution }}-apriltag-build-deps_*_all.deb | ||
dpkg-buildpackage -b | ||
- name: install bloomed packages | ||
run: | | ||
apt install -y --no-install-recommends ../ros-${{ matrix.ros_distribution }}-apriltag_*.deb ../ros-${{ matrix.ros_distribution }}-apriltag-dbgsym_*.ddeb |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>apriltag</name> | ||
<version>3.4.1</version> | ||
<version>3.4.2</version> | ||
<description>AprilTag detector library</description> | ||
|
||
<maintainer email="[email protected]">Max Krogius</maintainer> | ||
|