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

Jazzy定期観測 #494

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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
17 changes: 14 additions & 3 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
|| fromJSON('[ "ubuntu-latest" ]')
}}
timeout-minutes: 30
container: ghcr.io/ibis-ssl/crane:base
container: ros:${{ matrix.rosdistro }}
env:
DEBIAN_FRONTEND: noninteractive
strategy:
fail-fast: false
matrix:
rosdistro: [humble]
rosdistro: [humble, jazzy]
steps:
- name: suppress warnings
run: |
Expand Down Expand Up @@ -52,6 +52,18 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install wget
run: |
sudo apt-get update
sudo apt-get install -y wget

- name: Install orocos-bfl
run: |
wget https://launchpad.net/ubuntu/+archive/primary/+files/liborocos-bfl0.8_0.8.0-6_amd64.deb
wget https://launchpad.net/ubuntu/+archive/primary/+files/liborocos-bfl-dev_0.8.0-6_amd64.deb
sudo apt-get install -y ./liborocos-bfl0.8_0.8.0-6_amd64.deb
sudo apt-get install -y ./liborocos-bfl-dev_0.8.0-6_amd64.deb

- name: Clone dependency packages
run: |
mkdir -p dependency_ws
Expand All @@ -76,7 +88,6 @@ jobs:
run: |
. /opt/ros/${{ matrix.rosdistro }}/setup.sh
colcon build --event-handlers console_cohesion+ \
--packages-above-and-dependencies ${{ steps.get-modified-packages.outputs.modified-packages }} \
--cmake-args -DCMAKE_BUILD_TYPE=Release \
--mixin coverage-gcc coverage-pytest compile-commands
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion consai_ros2/consai_vision_tracker/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<depend>consai_visualizer_msgs</depend>
<depend>launch_ros</depend>
<depend>liborocos-bfl</depend>
<depend condition="$ROS_DISTRO == humble">liborocos-bfl</depend>
<depend>pkg-config</depend>
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>
Expand Down
12 changes: 0 additions & 12 deletions dependency_jazzy.repos
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,3 @@ repositories:
type: git
url: https://github.com/ANYbotics/grid_map.git
version: humble
navigation2:
type: git
url: https://github.com/open-navigation/navigation2.git
version: main
gazebo_ros_pkgs:
type: git
url: https://github.com/ros-simulation/gazebo_ros_pkgs.git
version: ros2
slam_toolbox:
type: git
url: https://github.com/SteveMacenski/slam_toolbox.git
version: ros2
Loading