Skip to content

Commit 4eb4ee0

Browse files
Adding CI to humble branch (#5122)
Signed-off-by: Steve Macenski <stevenmacenski@gmail.com>
1 parent c270b40 commit 4eb4ee0

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ _environments:
457457
executors:
458458
release_exec:
459459
docker:
460-
- image: ghcr.io/ros-planning/navigation2:main
460+
- image: ghcr.io/ros-planning/navigation2:humble
461461
resource_class: large
462462
working_directory: /opt/overlay_ws
463463
environment:

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dockerfile": "../Dockerfile",
55
"context": "..",
66
"target": "visualizer",
7-
"cacheFrom": "ghcr.io/ros-planning/navigation2:main"
7+
"cacheFrom": "ghcr.io/ros-planning/navigation2:humble"
88
},
99
"runArgs": [
1010
// "--cap-add=SYS_PTRACE", // enable debugging, e.g. gdb

.github/workflows/update_ci_image.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
push:
99
branches:
1010
- main
11+
- jazzy
12+
- humble
1113
paths:
1214
- '**/package.xml'
1315
- '**/*.repos'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# docker build -t nav2:latest \
77
# --build-arg UNDERLAY_MIXINS \
88
# --build-arg OVERLAY_MIXINS ./
9-
ARG FROM_IMAGE=ros:rolling
9+
ARG FROM_IMAGE=ros:humble
1010
ARG UNDERLAY_WS=/opt/underlay_ws
1111
ARG OVERLAY_WS=/opt/overlay_ws
1212

tools/distro.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
#
77
# Example build command:
88
# export DOCKER_BUILDKIT=1
9-
# export FROM_IMAGE="ros:rolling"
9+
# export FROM_IMAGE="ros:humble"
1010
# export OVERLAY_MIXINS="release ccache lld"
11-
# docker build -t nav2:rolling \
11+
# docker build -t nav2:humble \
1212
# --build-arg FROM_IMAGE \
1313
# --build-arg OVERLAY_MIXINS \
1414
# -f distro.Dockerfile ../
1515

16-
ARG FROM_IMAGE=ros:rolling
16+
ARG FROM_IMAGE=ros:humble
1717
ARG OVERLAY_WS=/opt/overlay_ws
1818

1919
# multi-stage for caching

0 commit comments

Comments
 (0)