-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix position + velocity control in ros2_control (#415) * Fix position + velocity control in ros2_control * Fix camera FoV * fix * Remove timer * Add acceleration * change camera info qos * fix rate * fix * Fix laser publisher (#425) * Allow custom ros2_control hardware_interface (#426) * Fix motor without sensor (#428) * Fix * Fix * Fix merge * Fix * include string (#434) Signed-off-by: Kenji Brameld <[email protected]> * CallbackReturn should include namespae in its signature (#435) Signed-off-by: Kenji Brameld <[email protected]> Co-authored-by: ad-daniel <[email protected]> * use new bbox msg signature (#433) * Handle new bbox msg signature from humble onwards Signed-off-by: Kenji Brameld <[email protected]> Co-authored-by: Olivier Michel <[email protected]> * Fix pep257 D407 Missing dashed underline after section (#437) * fix pep257 D407 Missing dashed underline after section Signed-off-by: Kenji Brameld <[email protected]> Co-authored-by: Olivier Michel <[email protected]> * bump python version to 3.10 for rolling (#436) * bump python version to 3.10 for rolling * use different python versions depending on distros * update submodule to most recent R2022a Signed-off-by: Kenji Brameld <[email protected]> Co-authored-by: Olivier Michel <[email protected]> * Change call to spawner.py executable to spawner (#438) * rename spawner.py executable to spawner Signed-off-by: Kenji Brameld <[email protected]> * use spawner.py if on foxy Signed-off-by: Kenji Brameld <[email protected]> * Sync (#445) * prepare version 1.2.3 (#402) * prepare version 1.2.3 * update libcontroller * install manually libpython3-dev * test python 3.9 rolling * removed install lib-python-dev * typo * update libcontroller * Upgrade webots_ros2_importer * fix std string * flake 8 fix importer * lidar new value * changelog importer * Fixes * Fix for foxy, galactic * Added GALACTIC definition * Update CHANGELOG.rst * Update CHANGELOG.rst * Update CHANGELOG.rst * Updated changelog * Added humble * skip broken tests * Fixed tests * fix * Update ci_after_init.bash * Update ci_after_init.bash * Fix build * Fix compilation * simplified * Possible fix * Fix * Synch urdf2webots to latest * Fixed a compilation warning with python 3.10 * Apply openssl patch * Fix path * Add debug message * debug * Fix * Fix * Debug * Hardcode * Increase timeout * Rolling fix * Revert "Rolling fix" This reverts commit ec39e10. * Test * Revert * Fixed wrong condition * Fix * Rework * Attempt to fix testing * Missing case * Rework * Fix * Fix * Update changelogs * Upgrade urdf2webots to 1.0.18 * Review fix Co-authored-by: Olivier Michel <[email protected]> Co-authored-by: ad-daniel <[email protected]> Co-authored-by: ad-daniel <[email protected]> * Fix build from repo (#452) * Fix build from repo * Fix * Fix changelog * Add nightly tests (#453) * Add nightly tests * Fix humble after sync * Make develop tests only nightly * Sync * Fix test * Test urdf2webots branch * Adapt to urdf2webots changes * revert urdf * Sync urdf2webots * Test * Fix style * update libcontroller * Add declaration to worlds (#456) * update urls (#457) * Fix master nightly (#459) * Fix master nightly * Add R * Revert nightly URL change * Sync libcontroller Signed-off-by: Kenji Brameld <[email protected]> Co-authored-by: Darko Lukić <[email protected]> Co-authored-by: Kenji Brameld <[email protected]> Co-authored-by: Olivier Michel <[email protected]> Co-authored-by: Benjamin Hug <[email protected]>
- Loading branch information
1 parent
47c7e8e
commit f60aca9
Showing
73 changed files
with
677 additions
and
321 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
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,34 @@ | ||
name: ROS2 tests (develop) | ||
|
||
on: | ||
schedule: | ||
- cron: '0 23 * * *' | ||
|
||
jobs: | ||
industrial_ci: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ROS_REPO: [main, testing] | ||
ROS_DISTRO: [foxy, galactic, humble, rolling] | ||
runs-on: ubuntu-latest | ||
env: | ||
AFTER_INIT: ./scripts/ci_after_init.bash ${ROS_DISTRO} ${ROS_REPO} | ||
BEFORE_INIT_EMBED: source scripts/ci_before_init_embed.bash | ||
DOCKER_RUN_OPTS: -v /artifacts:/tmp/artifacts | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
ref: develop | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: | ||
ROS_REPO: ${{matrix.ROS_REPO}} | ||
ROS_DISTRO: ${{matrix.ROS_DISTRO}} | ||
- name: Upload Artifact | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: generic_artifacts_develop_${{matrix.ROS_REPO}}_${{matrix.ROS_DISTRO}} | ||
path: /artifacts | ||
retention-days: 5 |
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
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_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>webots_ros2</name> | ||
<version>1.2.2</version> | ||
<version>1.2.3</version> | ||
<description>Interface between Webots and ROS2</description> | ||
|
||
<maintainer email="[email protected]">Cyberbotics</maintainer> | ||
|
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
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
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>webots_ros2_control</name> | ||
<version>1.2.2</version> | ||
<version>1.2.3</version> | ||
<description>ros2_control plugin for Webots</description> | ||
<maintainer email="[email protected]">Cyberbotics</maintainer> | ||
<url type="website">http://wiki.ros.org/webots_ros2</url> | ||
|
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.