mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 18:05:17 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3cb79112ce | ||
|
|
7fdcd34283 | ||
|
|
cda8e875f6 | ||
|
|
045bd30657 |
@@ -12,7 +12,7 @@ assignees: ''
|
|||||||
- Hardware description: <!-- hardware where you are using micro-ROS -->
|
- Hardware description: <!-- hardware where you are using micro-ROS -->
|
||||||
- RTOS: <!-- RTOS where you are using micro-ROS -->
|
- RTOS: <!-- RTOS where you are using micro-ROS -->
|
||||||
- Installation type: <!-- micro_ros_setup, modules, etc -->
|
- Installation type: <!-- micro_ros_setup, modules, etc -->
|
||||||
- Version or commit hash: <!-- version of micro-ROS used: foxy, rolling -->
|
- Version or commit hash: <!-- version of micro-ROS used: humble, jazzy, kilted, rolling -->
|
||||||
|
|
||||||
#### Steps to reproduce the issue
|
#### Steps to reproduce the issue
|
||||||
<!-- Detailed instructions on how to reliably reproduce this issue http://sscce.org/-->
|
<!-- Detailed instructions on how to reliably reproduce this issue http://sscce.org/-->
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name: CI micro-ROS Agent
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- 'rolling'
|
- 'kilted'
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '33 6 * * *'
|
- cron: '33 6 * * *'
|
||||||
|
|
||||||
@@ -15,10 +15,10 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest ]
|
os: [ ubuntu-latest ]
|
||||||
ros_distribution: [ rolling ]
|
ros_distribution: [ kilted ]
|
||||||
include:
|
include:
|
||||||
- docker_image: ubuntu:24.04
|
- docker_image: ubuntu:24.04
|
||||||
ros_distribution: rolling
|
ros_distribution: kilted
|
||||||
container:
|
container:
|
||||||
image: ${{ matrix.docker_image }}
|
image: ${{ matrix.docker_image }}
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -2,6 +2,15 @@
|
|||||||
Changelog for package micro-ros_agent
|
Changelog for package micro-ros_agent
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
6.1.0 (2025-07-10)
|
||||||
|
------------------
|
||||||
|
* Use target_link_libraries instead of ament_target_dependencies (`#253 <https://github.com/micro-ROS/micro-ROS-Agent/issues/253>`_)
|
||||||
|
* Remove fastrtps_cmake_module from CMakeLists.txt (`#248 <https://github.com/micro-ROS/micro-ROS-Agent/issues/248>`_)
|
||||||
|
* bump Micro XRCE-DDS Agent (`#245 <https://github.com/micro-ROS/micro-ROS-Agent/issues/245>`_)
|
||||||
|
* Undo changes in micro-ros agent compilation (`#239 <https://github.com/micro-ROS/micro-ROS-Agent/issues/239>`_)
|
||||||
|
* Update SuperBuild.cmake (`#238 <https://github.com/micro-ROS/micro-ROS-Agent/issues/238>`_)
|
||||||
|
* Bump micro-ROS-Agent to Fast DDS v3.0.1 (`#237 <https://github.com/micro-ROS/micro-ROS-Agent/issues/237>`_)
|
||||||
|
|
||||||
6.0.0 (2024-05-31)
|
6.0.0 (2024-05-31)
|
||||||
------------------
|
------------------
|
||||||
* Bump Micro XRCE-DDS Agent (`#226 <https://github.com/micro-ROS/micro-ROS-Agent/issues/226>`_)
|
* Bump Micro XRCE-DDS Agent (`#226 <https://github.com/micro-ROS/micro-ROS-Agent/issues/226>`_)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 3.11)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
option(UROSAGENT_GENERATE_PROFILE
|
option(UROSAGENT_GENERATE_PROFILE
|
||||||
"Generates agent.refs according to the .msgs provided in the .repos" OFF
|
"Generates agent.refs according to the .msgs provided in the .repos" OFF
|
||||||
|
|||||||
@@ -19,14 +19,14 @@ unset(_deps)
|
|||||||
enable_language(C)
|
enable_language(C)
|
||||||
enable_language(CXX)
|
enable_language(CXX)
|
||||||
|
|
||||||
unset(microxrcedds_agent_DIR CACHE)
|
unset(xrceagent_DIR CACHE)
|
||||||
find_package(microxrcedds_agent 3.0.2 QUIET)
|
find_package(xrceagent 3 EXACT QUIET)
|
||||||
if(NOT microxrcedds_agent_FOUND)
|
if(NOT xrceagent_FOUND)
|
||||||
ExternalProject_Add(microxrcedds_agent
|
ExternalProject_Add(xrceagent
|
||||||
GIT_REPOSITORY
|
GIT_REPOSITORY
|
||||||
https://github.com/eProsima/Micro-XRCE-DDS-Agent.git
|
https://github.com/eProsima/Micro-XRCE-DDS-Agent.git
|
||||||
GIT_TAG
|
GIT_TAG
|
||||||
v3.0.2
|
v3.0.1
|
||||||
PREFIX
|
PREFIX
|
||||||
${PROJECT_BINARY_DIR}/agent
|
${PROJECT_BINARY_DIR}/agent
|
||||||
INSTALL_DIR
|
INSTALL_DIR
|
||||||
@@ -51,7 +51,6 @@ if(NOT microxrcedds_agent_FOUND)
|
|||||||
-DUAGENT_BUILD_EXECUTABLE:BOOL=OFF
|
-DUAGENT_BUILD_EXECUTABLE:BOOL=OFF
|
||||||
-DUAGENT_ISOLATED_INSTALL:BOOL=OFF
|
-DUAGENT_ISOLATED_INSTALL:BOOL=OFF
|
||||||
)
|
)
|
||||||
list(APPEND _deps microxrcedds_agent)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Main project.
|
# Main project.
|
||||||
@@ -65,5 +64,5 @@ ExternalProject_Add(micro_ros_agent
|
|||||||
INSTALL_COMMAND
|
INSTALL_COMMAND
|
||||||
""
|
""
|
||||||
DEPENDS
|
DEPENDS
|
||||||
${_deps}
|
xrceagent
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||||
<package format="3">
|
<package format="3">
|
||||||
<name>micro_ros_agent</name>
|
<name>micro_ros_agent</name>
|
||||||
<version>6.0.0</version>
|
<version>6.1.0</version>
|
||||||
<description>micro-ROS Agent package</description>
|
<description>micro-ROS Agent package</description>
|
||||||
<maintainer email="eugeniocollado@eprosima.com">Eugenio Collado</maintainer>
|
<maintainer email="pablogarrido@eprosima.com">Pablo Garrido</maintainer>
|
||||||
<maintainer email="davidlaseca@eprosima.com">David Laseca</maintainer>
|
<maintainer email="antoniocuadros@eprosima.com">Antonio Cuadros</maintainer>
|
||||||
<license>Apache License 2.0</license>
|
<license>Apache License 2.0</license>
|
||||||
|
|
||||||
<buildtool_depend>ament_cmake</buildtool_depend>
|
<buildtool_depend>ament_cmake</buildtool_depend>
|
||||||
@@ -20,7 +20,6 @@
|
|||||||
<depend>rmw_fastrtps_shared_cpp</depend>
|
<depend>rmw_fastrtps_shared_cpp</depend>
|
||||||
<depend>rmw_dds_common</depend>
|
<depend>rmw_dds_common</depend>
|
||||||
<depend>micro_ros_msgs</depend>
|
<depend>micro_ros_msgs</depend>
|
||||||
<depend>microxrcedds_agent</depend>
|
|
||||||
|
|
||||||
<test_depend>rosidl_typesupport_fastrtps_cpp</test_depend>
|
<test_depend>rosidl_typesupport_fastrtps_cpp</test_depend>
|
||||||
<test_depend>ament_cmake_gtest</test_depend>
|
<test_depend>ament_cmake_gtest</test_depend>
|
||||||
|
|||||||
Reference in New Issue
Block a user