generated from Robotic-Decision-Making-Lab/ros2-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to support ROS 2 Rolling (#41)
* Updated dockerfile and devcontainer * Cleanup controllers for latest version of ros2_control * Removed dll_export stuff * Cleanup devcontainer * Updated to use latest version of hydrodynamics * Fix clang tidy errors * Resolve final error in CI * Fixed dev container name (cherry picked from commit ad612dc) # Conflicts: # .github/workflows/ci.yml # .github/workflows/docker.yml
- Loading branch information
1 parent
de1ffb1
commit 9629fb6
Showing
40 changed files
with
854 additions
and
1,158 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
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,26 @@ | ||
{ | ||
"name": "ROS 2 Dev Container", | ||
"dockerFile": "Dockerfile", | ||
"context": "../", | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/home/ubuntu/ws_ros/src/auv_controllers,type=bind", | ||
"workspaceFolder": "/home/ubuntu/ws_ros/src/auv_controllers", | ||
"remoteUser": "ubuntu", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-azuretools.vscode-docker", | ||
"ms-python.python", | ||
"njpwerner.autodocstring", | ||
"ms-vscode.cpptools", | ||
"redhat.vscode-xml", | ||
"redhat.vscode-yaml", | ||
"smilerobotics.urdf", | ||
"DavidAnson.vscode-markdownlint", | ||
"esbenp.prettier-vscode", | ||
"xaver.clang-format", | ||
"charliermarsh.ruff", | ||
"ms-vscode.cmake-tools" | ||
] | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,11 +1,13 @@ | ||
# ignore everything | ||
|
||
* | ||
|
||
# Except the following | ||
!requirements-dev.txt | ||
|
||
!auv_controllers | ||
!velocity_controllers | ||
!thruster_allocation_matrix_controller | ||
!thruster_controllers | ||
!auv_control_msgs | ||
!auv_control_demos | ||
!ros2.repos |
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,3 +2,6 @@ | |
build/ | ||
install/ | ||
log/ | ||
|
||
.mypy_cache/ | ||
.ruff_cache/ |
Oops, something went wrong.