Skip to content

Commit adaa8aa

Browse files
committed
Fixed ci and updated readme
1 parent 847dca8 commit adaa8aa

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG ROS_DISTRO=rolling
1+
ARG ROS_DISTRO=jazzy
22
FROM ros:$ROS_DISTRO-ros-base
33

44
ENV DEBIAN_FRONTEND=noninteractive

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
env:
22-
- ROS_DISTRO: rolling
22+
- ROS_DISTRO: jazzy
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4

.vscode/c_cpp_properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Linux",
55
"includePath": [
66
"${workspaceFolder}/**",
7-
"/opt/ros/rolling/include/**",
7+
"/opt/ros/jazzy/include/**",
88
"/usr/include/eigen3/**",
99
"/home/${USER}/ws_ros/install/**"
1010
],

.vscode/settings.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
"autoDocstring.startOnNewLine": false,
2424
"autoDocstring.docstringFormat": "google-notypes",
2525
"python.autoComplete.extraPaths": [
26-
"/opt/ros/rolling/lib/python3.12/site-packages/",
27-
"/opt/ros/rolling/local/lib/python3.12/dist-packages/",
26+
"/opt/ros/jazzy/lib/python3.12/site-packages/",
27+
"/opt/ros/jazzy/local/lib/python3.12/dist-packages/",
2828
"${workspaceFolder}/install/"
2929
],
3030
"python.analysis.extraPaths": [
31-
"/opt/ros/rolling/lib/python3.12/site-packages/",
32-
"/opt/ros/rolling/local/lib/python3.12/dist-packages/",
31+
"/opt/ros/jazzy/lib/python3.12/site-packages/",
32+
"/opt/ros/jazzy/local/lib/python3.12/dist-packages/",
3333
"${workspaceFolder}/install/"
3434
],
35-
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/waterlinked_dvl/bin/python",
35+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/auv_controllers/bin/python",
3636
"C_Cpp.default.intelliSenseMode": "linux-gcc-x86",
3737
"C_Cpp.clang_format_fallbackStyle": "Google",
3838
"C_Cpp.codeAnalysis.clangTidy.enabled": true,

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ benchmarking against other commonly-used control algorithms.
1212
## Installation
1313

1414
auv_controllers is currently supported on Linux and is available for the ROS 2
15-
Iron distribution. To install auv_controllers, first clone this project to the
16-
`src` directory of your ROS workspace:
15+
Rolling, Jazzy, Iron and Humble distributions. To install auv_controllers,
16+
first clone this project to the `src` directory of your ROS workspace:
1717

1818
```bash
1919
git clone git@github.com:Robotic-Decision-Making-Lab/auv_controllers.git

0 commit comments

Comments
 (0)