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 humble CI #40

Merged
merged 13 commits into from
May 16, 2024
24 changes: 24 additions & 0 deletions .github/workflows/humble.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Humble CI
on:
push:
branches:
- 'humble'
pull_request:
branches:
- 'humble'
workflow_dispatch:
branches:
- '*'
jobs:
build_and_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: humble
- uses: ros-tooling/[email protected]
with:
target-ros2-distro: humble
vcs-repo-file-url: $GITHUB_WORKSPACE/source_dependencies.yaml
rosdep-check: true
25 changes: 0 additions & 25 deletions .github/workflows/noetic.yml
amock marked this conversation as resolved.
Show resolved Hide resolved

This file was deleted.

7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
This is the active ROS2 branch of this repository.
This is the active ROS2 branch of this repository, which targets [ROS2 humble](https://docs.ros.org/en/humble/index.html).
Our CI runs on Ubuntu Jammy (22.04), but other distros might work as well.

If your are looking for the old ROS1 version, checkout the [noetic branch](https://github.com/naturerobots/mesh_tools/tree/noetic).

# Mesh Tools
Expand Down Expand Up @@ -87,4 +89,5 @@ This video shows the labeling tool, which is used to cluster faces to an object

| ROS Distro | GitHub CI | Develop | Documentation | Source Deb | Binary Deb |
|-------------|-----------|---------|---------------|------------|------------|
| **Noetic** | [![Noetic CI](https://github.com/uos/mesh_tools/workflows/Noetic%20CI/badge.svg)](https://github.com/uos/mesh_tools/actions?query=workflow%3A%22Noetic+CI%22) | [![Build Dev Status](http://build.ros.org/buildStatus/icon?job=Ndev__mesh_tools__ubuntu_focal_amd64)](http://build.ros.org/job/Ndev__mesh_tools__ubuntu_focal_amd64) | [![Build Doc Status](http://build.ros.org/buildStatus/icon?job=Ndoc__mesh_tools__ubuntu_focal_amd64)](http://build.ros.org/job/Ndoc__mesh_tools__ubuntu_focal_amd64) | [![Build Src Status](http://build.ros.org/buildStatus/icon?job=Nsrc_uF__mesh_tools__ubuntu_focal__source)](http://build.ros.org/job/Nsrc_uF__mesh_tools__ubuntu_focal__source) | [![Build Bin Status](http://build.ros.org/buildStatus/icon?job=Nbin_uF64__mesh_tools__ubuntu_focal_amd64__binary)](http://build.ros.org/job/Nbin_uF64__mesh_tools__ubuntu_focal_amd64__binary) |
| **Humble** | [![Humble CI](https://github.com/naturerobots/mesh_tools/actions/workflows/humble.yaml/badge.svg)](https://github.com/naturerobots/mesh_tools/actions/workflows/humble.yaml) | N/A | N/A | N/A | N/A |
| **Noetic** | [![Noetic CI](https://github.com/naturerobots/mesh_tools/actions/workflows/noetic.yml/badge.svg)](https://github.com/naturerobots/mesh_tools/actions/workflows/noetic.yml) | [![Build Dev Status](http://build.ros.org/buildStatus/icon?job=Ndev__mesh_tools__ubuntu_focal_amd64)](http://build.ros.org/job/Ndev__mesh_tools__ubuntu_focal_amd64) | [![Build Doc Status](http://build.ros.org/buildStatus/icon?job=Ndoc__mesh_tools__ubuntu_focal_amd64)](http://build.ros.org/job/Ndoc__mesh_tools__ubuntu_focal_amd64) | [![Build Src Status](http://build.ros.org/buildStatus/icon?job=Nsrc_uF__mesh_tools__ubuntu_focal__source)](http://build.ros.org/job/Nsrc_uF__mesh_tools__ubuntu_focal__source) | [![Build Bin Status](http://build.ros.org/buildStatus/icon?job=Nbin_uF64__mesh_tools__ubuntu_focal_amd64__binary)](http://build.ros.org/job/Nbin_uF64__mesh_tools__ubuntu_focal_amd64__binary) |
7 changes: 7 additions & 0 deletions source_dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Repositories in here contain dependencies of mesh_tools that are currently not avaiable via apt.
# Every repository listed here will get cloned and built during CI runs.
repositories:
uos/lvr2:
type: git
url: https://github.com/uos/lvr2.git
version: humble
Loading