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

Removed geometry2 deprecated headers #125

Merged
merged 5 commits into from
Feb 24, 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
27 changes: 0 additions & 27 deletions .github/workflows/industrial_ci_action.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/industrial_ci_build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Industrial-CI
on: [push, pull_request] # on all pushes and PRs

jobs:
CI:
strategy:
matrix:
env:
- {ROS_DISTRO: rolling}
- {ROS_DISTRO: rolling, PRERELEASE: true}
- {ROS_DISTRO: humble, PRERELEASE: true}
- {ROS_DISTRO: iron, PRERELEASE: true}
# env:
# CCACHE_DIR: /github/home/.ccache # Enable ccache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# # This step will fetch/store the directory used by ccache before/after the ci run
# - uses: actions/cache@v3
# with:
# path: ${{ env.CCACHE_DIR }}
# key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: 'ros-industrial/industrial_ci@master'
env: ${{ matrix.env }}
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ jobs:
fail-fast: false
matrix:
ros_distribution:
- foxy
- galactic
- humble
- iron
- rolling
include:
# Foxy Fitzroy (June 2020 - May 2023)
- docker_image: rostooling/setup-ros-docker:ubuntu-focal-ros-foxy-ros-base-latest
ros_distribution: foxy
# Humble Hawksbill (May 2022 - May 2027)
- os: ubuntu-22.04
ros_distribution: humble
ros_version: 2
# Galactic Geochelone (May 2021 - November 2022)
- docker_image: rostooling/setup-ros-docker:ubuntu-focal-ros-galactic-ros-base-latest
ros_distribution: galactic
# Iron Irwini (May 2023 - November 2024)
- os: ubuntu-22.04
ros_distribution: iron
ros_version: 2
# Rolling Ridley (June 2020 - Present)
- docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest
- os: ubuntu-22.04
ros_distribution: rolling
ros_version: 2
container:
image: ${{ matrix.docker_image }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.ros_distribution == 'rolling' }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 2

Expand All @@ -42,7 +42,7 @@ jobs:
echo ::set-output name=package_list::$(colcon list --names-only)

- name: build and test
uses: ros-tooling/action-ros-ci@v0.2
uses: ros-tooling/action-ros-ci@v0.3.6
with:
package-name: ${{ steps.list_packages.outputs.package_list }}
target-ros2-distro: ${{ matrix.ros_distribution }}
Expand Down
6 changes: 3 additions & 3 deletions octomap_server/src/octomap_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@

#include <octomap_server/octomap_server.hpp>

#include <tf2_eigen/tf2_eigen.h>
#include <tf2_geometry_msgs/tf2_geometry_msgs.h>

#include <algorithm>
#include <limits>
#include <memory>
#include <string>
#include <vector>

#include <tf2_eigen/tf2_eigen.hpp>
#include <tf2_geometry_msgs/tf2_geometry_msgs.hpp>

namespace
{
template<typename T>
Expand Down
Loading