Skip to content

Commit f3c0176

Browse files
committed
feat: Sync all workspaces with latest template
1 parent f7dce29 commit f3c0176

24 files changed

Lines changed: 108 additions & 0 deletions

File tree

aloha_ws/docker/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
147147
git-extras \
148148
&& sudo rm -rf /var/lib/apt/lists/*
149149

150+
# Cartographer configuration
151+
ARG CARTOGRAPHER=NO
152+
COPY --chown=$USERNAME:$USERNAME \
153+
modules/install_cartographer.sh /tmp/install_cartographer.sh
154+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
155+
/tmp/install_cartographer.sh && rm /tmp/install_cartographer.sh
156+
150157
# TODO: Add more commands here
151158

152159
# Install udevadm for later use

aloha_ws/docker/compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ services:
4242
# ISAAC_LAB_VERSION: "2.1.0"
4343
# TODO: Set Isaac ROS to "" if not using Isaac ROS
4444
# ISAAC_ROS: "YES"
45+
# TODO: Set to "YES" if using Cartographer
46+
# CARTOGRAPHER: "NO"
4547
cache_from:
4648
- j3soon/ros2-aloha-ws:buildcache-amd64
4749
- j3soon/ros2-aloha-ws:buildcache-arm64

delto_gripper_ws/docker/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
147147
git-extras \
148148
&& sudo rm -rf /var/lib/apt/lists/*
149149

150+
# Cartographer configuration
151+
ARG CARTOGRAPHER=NO
152+
COPY --chown=$USERNAME:$USERNAME \
153+
modules/install_cartographer.sh /tmp/install_cartographer.sh
154+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
155+
/tmp/install_cartographer.sh && rm /tmp/install_cartographer.sh
156+
150157
# TODO: Add more commands here
151158

152159
# Install delto gripper dependencies

delto_gripper_ws/docker/compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ services:
4242
# ISAAC_LAB_VERSION: "2.1.0"
4343
# TODO: Set Isaac ROS to "" if not using Isaac ROS
4444
# ISAAC_ROS: "YES"
45+
# TODO: Set to "YES" if using Cartographer
46+
# CARTOGRAPHER: "NO"
4547
cache_from:
4648
- j3soon/ros2-delto-gripper-ws:buildcache-amd64
4749
- j3soon/ros2-delto-gripper-ws:buildcache-arm64

gazebo_world_ws/docker/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
147147
git-extras \
148148
&& sudo rm -rf /var/lib/apt/lists/*
149149

150+
# Cartographer configuration
151+
ARG CARTOGRAPHER=NO
152+
COPY --chown=$USERNAME:$USERNAME \
153+
modules/install_cartographer.sh /tmp/install_cartographer.sh
154+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
155+
/tmp/install_cartographer.sh && rm /tmp/install_cartographer.sh
156+
150157
# TODO: Add more commands here
151158
COPY --chown=$USERNAME:$USERNAME \
152159
.bashrc /home/$USERNAME/.bashrc

gazebo_world_ws/docker/compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ services:
4242
# ISAAC_LAB_VERSION: "2.1.0"
4343
# TODO: Set Isaac ROS to "" if not using Isaac ROS
4444
# ISAAC_ROS: "YES"
45+
# TODO: Set to "YES" if using Cartographer
46+
# CARTOGRAPHER: "NO"
4547
cache_from:
4648
- j3soon/ros2-gazebo-world-ws:buildcache-amd64
4749
- j3soon/ros2-gazebo-world-ws:buildcache-arm64

go2_ws/docker/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
147147
git-extras \
148148
&& sudo rm -rf /var/lib/apt/lists/*
149149

150+
# Cartographer configuration
151+
ARG CARTOGRAPHER=NO
152+
COPY --chown=$USERNAME:$USERNAME \
153+
modules/install_cartographer.sh /tmp/install_cartographer.sh
154+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
155+
/tmp/install_cartographer.sh && rm /tmp/install_cartographer.sh
156+
150157
# TODO: Add more commands here
151158

152159
# Install ros packages

go2_ws/docker/compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ services:
4242
# ISAAC_LAB_VERSION: "2.1.0"
4343
# TODO: Set Isaac ROS to "" if not using Isaac ROS
4444
# ISAAC_ROS: "YES"
45+
# TODO: Set to "YES" if using Cartographer
46+
# CARTOGRAPHER: "NO"
4547
cache_from:
4648
- j3soon/ros2-go2-ws:buildcache-amd64
4749
- j3soon/ros2-go2-ws:buildcache-arm64

h1_ws/docker/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
147147
git-extras \
148148
&& sudo rm -rf /var/lib/apt/lists/*
149149

150+
# Cartographer configuration
151+
ARG CARTOGRAPHER=NO
152+
COPY --chown=$USERNAME:$USERNAME \
153+
modules/install_cartographer.sh /tmp/install_cartographer.sh
154+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
155+
/tmp/install_cartographer.sh && rm /tmp/install_cartographer.sh
156+
150157
# TODO: Add more commands here
151158
COPY --chown=$USERNAME:$USERNAME \
152159
.bashrc /home/$USERNAME/.bashrc

h1_ws/docker/compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ services:
4242
# ISAAC_LAB_VERSION: "2.1.0"
4343
# TODO: Set Isaac ROS to "" if not using Isaac ROS
4444
# ISAAC_ROS: "YES"
45+
# TODO: Set to "YES" if using Cartographer
46+
# CARTOGRAPHER: "NO"
4547
cache_from:
4648
- j3soon/ros2-h1-ws:buildcache-amd64
4749
- j3soon/ros2-h1-ws:buildcache-arm64

0 commit comments

Comments
 (0)