-
Notifications
You must be signed in to change notification settings - Fork 21
Migration to Humble #77
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f0567f6
Use unique node name
Yadunund 7bf7857
Fix lift names
Yadunund d469447
Undo 20.04 CI change
Yadunund 5e1bce9
Merge branch 'main' into fix/humble
luca-della-vedova 955a19d
Update ci to humble
Yadunund 5bd535a
Update ci
Yadunund e356ae7
Use jammy container
Yadunund 613b0a4
Fixed symbol error for dispenser_common
Yadunund 6a7782d
Add linter to ci
Yadunund a68bacc
Update readme with badges
Yadunund f228a7a
Rename to gz and gz_classic
Yadunund 8d8941d
Merge branch 'main' into fix/humble
Yadunund 4c658dd
Merge branch 'main' into fix/humble
luca-della-vedova 45a8c8c
Cleaner style syntax and address dangling else
Yadunund 24023e0
Back to main for CI
luca-della-vedova c9fc124
Update action version
luca-della-vedova File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,43 +1,39 @@ | ||
name: build | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
build_and_test: | ||
name: Build and test | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rostooling/setup-ros-docker:ubuntu-focal-latest | ||
strategy: | ||
matrix: | ||
ros_distribution: | ||
- foxy | ||
- galactic | ||
image: rostooling/setup-ros-docker:ubuntu-jammy-latest | ||
steps: | ||
- name: deps | ||
uses: ros-tooling/[email protected] | ||
env: | ||
CC: clang | ||
CXX: clang++ | ||
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
required-ros-distributions: humble | ||
- name: install_clang | ||
run: sudo apt update && sudo apt install -y clang clang-tools lld | ||
- name: build | ||
uses: ros-tooling/[email protected] | ||
env: | ||
CC: clang | ||
CXX: clang++ | ||
with: | ||
target-ros2-distro: ${{ matrix.ros_distribution }} | ||
target-ros2-distro: humble | ||
# build all packages listed in the meta package | ||
package-name: | | ||
rmf_building_sim_common | ||
rmf_building_sim_gazebo_plugins | ||
rmf_building_sim_ignition_plugins | ||
rmf_building_sim_gz_classic_plugins | ||
rmf_building_sim_gz_plugins | ||
rmf_robot_sim_common | ||
rmf_robot_sim_gazebo_plugins | ||
rmf_robot_sim_ignition_plugins | ||
rmf_robot_sim_gz_classic_plugins | ||
rmf_robot_sim_gz_plugins | ||
vcs-repo-file-url: | | ||
https://raw.githubusercontent.com/open-rmf/rmf/main/rmf.repos | ||
colcon-defaults: | | ||
|
This file contains hidden or 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,24 @@ | ||
name: style | ||
on: | ||
pull_request: | ||
push: | ||
branches: [ main ] | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
linter: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
docker_image: ['ros:humble-ros-base'] | ||
container: | ||
image: ${{ matrix.docker_image }} | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: uncrustify | ||
run: | | ||
sudo apt update && sudo apt install wget | ||
wget https://raw.githubusercontent.com/open-rmf/rmf_utils/main/rmf_utils/test/format/rmf_code_style.cfg | ||
/ros_entrypoint.sh ament_uncrustify -c rmf_code_style.cfg . --language C++ |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 @@ | |
<name>rmf_building_sim_common</name> | ||
<version>1.3.1</version> | ||
<description> | ||
Common utility functions for Gazebo and ignition building plugins | ||
Common utility functions for Gazebo-classic and Gazebo building plugins | ||
</description> | ||
<author>Morgan Quigley</author> | ||
<author>Michael Grey</author> | ||
|
@@ -11,6 +11,7 @@ | |
<author>Brandon Ong</author> | ||
<author>Kevin Ma</author> | ||
<author>Rushyendra Maganty</author> | ||
<author>Yadunund</author> | ||
<maintainer email="[email protected]">Morgan Quigley</maintainer> | ||
<maintainer email="[email protected]">Marco A. Gutiérrez</maintainer> | ||
<license>Apache 2.0</license> | ||
|
This file was deleted.
Oops, something went wrong.
6 changes: 5 additions & 1 deletion
6
...building_sim_gazebo_plugins/CHANGELOG.rst → ...ding_sim_gz_classic_plugins/CHANGELOG.rst
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...uilding_sim_gazebo_plugins/CMakeLists.txt → ...ing_sim_gz_classic_plugins/CMakeLists.txt
This file contains hidden or 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 hidden or 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 hidden or 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,7 @@ | ||
# rmf\_building\_sim\_gz_classic\_plugins | ||
|
||
This package provides Gazebo-classic simulator plugins for allowing simulated building infrastructure to communicate with a ROS system. | ||
|
||
## Quality Declaration | ||
|
||
This package claims to be in the **Quality Level 4** category, see the [Quality Declaration](./QUALITY_DECLARATION.md) for more details. |
2 changes: 1 addition & 1 deletion
2
rmf_building_sim_gazebo_plugins/package.xml → ...ilding_sim_gz_classic_plugins/package.xml
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.