-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.1.0 contains several smaller improvements to the Modulo project, such as more consistency with parameter naming, declaring and removing of signals, and cleaner exception handling and logging. Another new feature is the ability to provide a user-defined callback for input signals. There have also been some changes to support both galactic and humble releases of ROS.
- Loading branch information
Showing
51 changed files
with
1,260 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: 'Build and Test (galactic-devel)' | ||
description: 'Build the source packages and run all unit tests' | ||
runs: | ||
using: 'docker' | ||
image: 'ghcr.io/aica-technology/ros2-control-libraries:galactic-devel' | ||
entrypoint: '/github/workspace/.github/common/entrypoint.sh' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
name: 'Build and Test (Galactic)' | ||
name: 'Build and Test (galactic)' | ||
description: 'Build the source packages and run all unit tests' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
image: 'ghcr.io/aica-technology/ros2-control-libraries:galactic' | ||
entrypoint: '/github/workspace/.github/common/entrypoint.sh' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: 'Build and Test (humble-devel)' | ||
description: 'Build the source packages and run all unit tests' | ||
runs: | ||
using: 'docker' | ||
image: 'ghcr.io/aica-technology/ros2-control-libraries:humble-devel' | ||
entrypoint: '/github/workspace/.github/common/entrypoint.sh' |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
sudo su - ros2 -c /bin/bash -c /github/workspace/.github/common/build-test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,6 @@ | |
|
||
.idea | ||
cmake-build-* | ||
./fileList.txt | ||
|
||
doxygen/docs/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.0.0 | ||
2.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>modulo_component_interfaces</name> | ||
<version>2.0.0</version> | ||
<version>2.1.0</version> | ||
<description>Interface package for communicating with modulo components through the ROS framework</description> | ||
<maintainer email="[email protected]">Enrico Eberhard</maintainer> | ||
<license>TODO: License declaration</license> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.