Skip to content

Commit 4d0eabb

Browse files
Rolling (#66)
* Add rolling development support Signed-off-by: Adam Galecki <[email protected]> --------- Signed-off-by: Adam Galecki <[email protected]> Co-authored-by: Allison Thackston <[email protected]>
1 parent f73970b commit 4d0eabb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM althack/ros2:humble-dev
1+
FROM althack/ros2:rolling-dev
22

33
# ** [Optional] Uncomment this section to install additional packages. **
44
#

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"betwo.b2-catkin-tools",
3434
"DotJoshJohnson.xml",
3535
"ms-azuretools.vscode-docker",
36-
"ms-iot.vscode-ros",
3736
"ms-python.python",
3837
"ms-vscode.cpptools",
3938
"redhat.vscode-yaml",
4039
"smilerobotics.urdf",
4140
"streetsidesoftware.code-spell-checker",
4241
"twxs.cmake",
4342
"yzhang.markdown-all-in-one",
44-
"zachflower.uncrustify"
43+
"zachflower.uncrustify",
44+
"ms-iot.vscode-ros"
4545
]
4646
}
4747
}

.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/humble/include/**"
7+
"/opt/ros/rolling/include/**"
88
],
99
"defines": [],
1010
"compilerPath": "/usr/bin/gcc",

.vscode/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"*.xacro": "xml"
1010
},
1111
"python.analysis.extraPaths": [
12-
"/opt/ros/humble/lib/python3.10/site-packages/"
12+
"/opt/ros/rolling/lib/python3.10/site-packages/"
1313
],
1414
// Autocomplete from ros python packages
1515
"python.autoComplete.extraPaths": [
16-
"/opt/ros/humble/lib/python3.10/site-packages/"
16+
"/opt/ros/rolling/lib/python3.10/site-packages/"
1717
],
1818
// Environment file lets vscode find python files within workspace
1919
"python.envFile": "${workspaceFolder}/.env",
@@ -24,7 +24,7 @@
2424
],
2525
"C_Cpp.default.intelliSenseMode": "linux-gcc-x86",
2626
"C_Cpp.formatting": "disabled",
27-
"uncrustify.configPath.linux": "/opt/ros/humble/lib/python3.10/site-packages/ament_uncrustify/configuration/ament_code_style.cfg",
27+
"uncrustify.configPath.linux": "/opt/ros/rolling/lib/python3.10/site-packages/ament_uncrustify/configuration/ament_code_style.cfg",
2828
"[cpp]": {
2929
"editor.defaultFormatter": "zachflower.uncrustify"
3030
},

src/ros2.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ repositories:
77
examples:
88
type: git
99
url: https://github.com/ros2/examples.git
10-
version: humble
10+
version: rolling

0 commit comments

Comments
 (0)