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

Declaring dependency to example_interfaces #73

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 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
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
mkdir ros_interfaces_ws
cd ros_interfaces_ws
ln -s ../ros_support_interfaces src
rosdep update
rosdep install --from-paths src -y --ignore-src
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
# run the tests
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions ros_support_interfaces/delib_ws_24_interfaces/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<version>0.0.0</version>
<description>Contains the interfaces use in the delib example.</description>

<maintainer email="[email protected]">Geoffrey Biggs</maintainer>
<maintainer email="[email protected]">Marco Lampacrescia</maintainer>

<license>Apache License 2.0</license>

<author email="[email protected]">Dirk Thomas</author>
<author email="[email protected]">Marco Lampacrescia</author>

<buildtool_depend>ament_cmake</buildtool_depend>

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 3.5)

project(dummy_pkg_for_declarations)
ct2034 marked this conversation as resolved.
Show resolved Hide resolved
11 changes: 11 additions & 0 deletions ros_support_interfaces/dummy_pkg_for_declarations/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>dummy_pkg_for_declarations</name>
<version>0.0.0</version>
<description>Declares example_interfaces needed e.g. by examples/fibonacci_action_example.</description>
<maintainer email="[email protected]">Marco Lampacrescia</maintainer>
<license>Apache License 2.0</license>
<author email="[email protected]">Marco Lampacrescia</author>
<exec_depend>example_interfaces</exec_depend>
</package>
6 changes: 5 additions & 1 deletion test/jani_generator/test_systemtest_scxml_to_jani.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,11 @@ def test_robot_navigation_with_bt_demo(self):
def test_uc1_docking(self):
"""Test the UC1 docking BT."""
self._test_with_main(
"uc1_docking", store_generated_scxmls=True, property_name="tree_success", success=True
"uc1_docking",
store_generated_scxmls=True,
property_name="tree_success",
success=True,
size_limit=1_000_000,
)

def test_uc1_docking_bugged(self):
Expand Down
Loading