Skip to content

Commit

Permalink
Update for jazzy
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyZe committed Jul 7, 2024
1 parent def464c commit 0b94a1e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: humble, ROS_REPO: main}
- {ROS_DISTRO: jazzy, ROS_REPO: main}
runs-on: ubuntu-latest
env:
UPSTREAM_WORKSPACE: upstream.repos
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()

set(THIS_PACKAGE_INCLUDE_DEPENDS ai_msgs cv_bridge rclcpp sensor_msgs)
set(THIS_PACKAGE_INCLUDE_DEPENDS ai_msgs ament_index_cpp cv_bridge rclcpp
sensor_msgs)

find_package(ament_cmake REQUIRED)
find_package(CURL REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion include/ros2_openai_server/convert_image_to_base_64.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <b64/encode.h>
#include <cv_bridge/cv_bridge.h>
#include <cv_bridge/cv_bridge.hpp>
#include <iostream>
#include <opencv2/opencv.hpp>
#include <optional>
Expand Down
1 change: 1 addition & 0 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<buildtool_depend>ament_cmake</buildtool_depend>

<depend>ai_msgs</depend>
<depend>ament_index_cpp</depend>
<depend>cv_bridge</depend>
<depend>rclcpp</depend>
<depend>sensor_msgs</depend>
Expand Down
2 changes: 1 addition & 1 deletion src/example_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <ament_index_cpp/get_package_share_directory.hpp>
#include <chrono>
#include <cstdlib>
#include <cv_bridge/cv_bridge.h>
#include <cv_bridge/cv_bridge.hpp>
#include <memory>
#include <opencv2/opencv.hpp>

Expand Down

0 comments on commit 0b94a1e

Please sign in to comment.