Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Ubuntu 24.04 to CI #35

Merged
merged 4 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/deps.repos
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
repositories:
src/apriltag:
type: git
url: https://github.com/AprilRobotics/apriltag.git
version: v3.4.2
src/apriltag_msgs:
type: git
url: https://github.com/christianrauch/apriltag_msgs.git
version: 2.0.1
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ jobs:
name: apriltag_ros
runs-on: ubuntu-latest

strategy:
matrix:
include:
- {ubuntu: "22.04", ros: humble}
- {ubuntu: "24.04", ros: jazzy}

container:
image: ubuntu:22.04
image: ubuntu:${{ matrix.ubuntu }}

steps:
- uses: actions/checkout@v4
Expand All @@ -18,5 +24,5 @@ jobs:
- uses: ros-tooling/[email protected]
with:
package-name: apriltag_ros
target-ros2-distro: humble
target-ros2-distro: ${{ matrix.ros }}
vcs-repo-file-url: .github/deps.repos
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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_ros</name>
<version>3.2.0</version>
<version>3.2.1</version>
<description>AprilTag detection node</description>
<maintainer email="[email protected]">Christian Rauch</maintainer>
<license>MIT</license>
Expand Down
1 change: 1 addition & 0 deletions src/pose_estimation.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <apriltag/apriltag.h>
#include <functional>
#include <geometry_msgs/msg/transform_stamped.hpp>
#include <unordered_map>

Expand Down