Skip to content

Commit 25f720f

Browse files
committed
Bump Jazzy
1 parent 452ecee commit 25f720f

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

.github/workflows/generate_base_docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
branch: iron
2020
- ros_distribution: rolling
2121
branch: rolling
22+
- ros_distribution: jazzy
23+
branch: jazzy
2224
steps:
2325
- uses: actions/checkout@v3
2426
with:

.github/workflows/generate_libgen_docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
branch: iron
2020
- ros_distribution: rolling
2121
branch: rolling
22+
- ros_distribution: jazzy
23+
branch: jazzy
2224
steps:
2325
- uses: actions/checkout@v3
2426
with:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The available images are listed below:
1111

1212
| Image | Description | Status |
1313
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
14-
| base | Base image with a ROS 2 Rolling installation + micro-ROS specific build system tools. Used as base of any other micro-ROS image | [![Docker Automated build](https://img.shields.io/docker/cloud/automated/microros/base.svg?logo=docker)](https://hub.docker.com/r/microros/base/)[![Docker Build Status](https://img.shields.io/docker/cloud/build/microros/base.svg?logo=docker)](https://hub.docker.com/r/microros/base/)[![Compare Images](https://images.microbadger.com/badges/image/microros/base.svg)](https://microbadger.com/images/microros/base) |
14+
| base | Base image with a ROS 2 Jazzy installation + micro-ROS specific build system tools. Used as base of any other micro-ROS image | [![Docker Automated build](https://img.shields.io/docker/cloud/automated/microros/base.svg?logo=docker)](https://hub.docker.com/r/microros/base/)[![Docker Build Status](https://img.shields.io/docker/cloud/build/microros/base.svg?logo=docker)](https://hub.docker.com/r/microros/base/)[![Compare Images](https://images.microbadger.com/badges/image/microros/base.svg)](https://microbadger.com/images/microros/base) |
1515
| micro-ros-agent | Image containing a pre-compiled micro-ROS-Agent, ready to use as a standalone application | [![Docker Automated build](https://img.shields.io/docker/cloud/automated/microros/micro-ros-agent.svg?logo=docker)](https://hub.docker.com/r/microros/micro-ros-agent/)[![Docker Build Status](https://img.shields.io/docker/cloud/build/microros/micro-ros-agent.svg?logo=docker)](https://hub.docker.com/r/microros/micro-ros-agent/)[![Compare Images](https://images.microbadger.com/badges/image/microros/micro-ros-agent.svg)](https://microbadger.com/images/microros/micro-ros-agent) |
1616
| micro-ros-demos | Contains pre-compiled micro-ROS demo applications, ready to use to get a taste of micro-ROS capabilities | [![Docker Automated build](https://img.shields.io/docker/cloud/automated/microros/micro-ros-demos.svg?logo=docker)](https://hub.docker.com/r/microros/micro-ros-demos/)[![Docker Build Status](https://img.shields.io/docker/cloud/build/microros/micro-ros-demos.svg?logo=docker)](https://hub.docker.com/r/microros/micro-ros-demos/)[![Compare Images](https://images.microbadger.com/badges/image/microros/micro-ros-demos.svg)](https://microbadger.com/images/microros/micro-ros-demos) |
1717
| micro_ros_static_library_builder | Allows to use a pre-compiled micro-ROS library to develop applications in external environments | [![Docker Automated build](https://img.shields.io/docker/cloud/automated/microros/micro_ros_static_library_builder.svg?logo=docker)](https://hub.docker.com/r/microros/micro_ros_static_library_builder/)[![Docker Build Status](https://img.shields.io/docker/cloud/build/microros/micro_ros_static_library_builder.svg?logo=docker)](https://hub.docker.com/r/microros/micro_ros_static_library_builder/)[![Compare Images](https://images.microbadger.com/badges/image/microros/micro_ros_static_library_builder.svg)](https://microbadger.com/images/microros/micro_ros_static_library_builder) |
@@ -33,11 +33,11 @@ To get an image, use the `docker pull` command:
3333

3434
You can select the preferred tag by appending `:tag` to the image name
3535

36-
* e.g. `docker pull microros/base:rolling`
36+
* e.g. `docker pull microros/base:jazzy`
3737

3838
Once you have the image locally, type `docker run` to start it. It is not mandatory, although usually useful, to launch your containers using the `--rm` and `--net=host` flags:
3939

40-
* e.g. `docker run -it --rm --net=host microros/micro-ros-agent:rolling`
40+
* e.g. `docker run -it --rm --net=host microros/micro-ros-agent:jazzy`
4141

4242
`--rm` makes sure that the docker image will be removed after exiting.
4343
`--net=host` provides the container with the same network access as the host.
@@ -58,7 +58,7 @@ This image is meant to be used as a stand-alone application.
5858
It includes the installation of the ROS 2 version selected by the tag selected, together with a micro-ROS Agent.
5959
The entry point of this image is directly the micro-ROS Agent, so upon execution of `docker run` you will be facing the micro-ROS Agent command line input. Running:
6060

61-
* e.g. `docker run -it --net=host microros/micro-ros-agent:rolling udp4 -p 9999`
61+
* e.g. `docker run -it --net=host microros/micro-ros-agent:jazzy udp4 -p 9999`
6262

6363
will start a micro-ROS Agent listening to UDP messages on port 9999.
6464

@@ -78,7 +78,7 @@ The currently available examples are listed [here](https://github.com/micro-ROS/
7878
This image provides you with a ready-to-flash firmware for Olimex-STM32-E407 boards with demos included.
7979
To be able to flash, you need to map your devices to the Docker container as follows:
8080

81-
* e.g. `docker run -it --privileged -v /dev/bus/usb:/dev/bus/usb microros/micro-ros-olimex-nuttx:rolling`
81+
* e.g. `docker run -it --privileged -v /dev/bus/usb:/dev/bus/usb microros/micro-ros-olimex-nuttx:jazzy`
8282

8383
Once inside the container, you can flash the board by running `scripts/flash.sh` from the `firmware/NuttX` directory.
8484

@@ -91,7 +91,7 @@ Once a Client-Agent communication is established you can use ROS 2 tools to view
9191
The `micro_ros_static_library_builder` docker image provides you with a set of include files and pre-compiled micro-ROS libraries to develop your micro-ROS application within the Arduino IDE environment.
9292
To be able to use it, use the following command to instantiate a container of this image:
9393

94-
* e.g. `docker run -it -v $(pwd):/arduino_project --net=host microros/micro_ros_static_library_builder:rolling`.
94+
* e.g. `docker run -it -v $(pwd):/arduino_project --net=host microros/micro_ros_static_library_builder:jazzy`.
9595

9696
Note that folders added to `extras/library_generation/extra_packages` and entries added to `extras/library_generation/extra_packages/extra_packages.repos` will be taken into account by this build system.
9797

base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM ros:rolling
1+
FROM ros:jazzy
22

33
WORKDIR /uros_ws
44

5-
RUN git clone --depth 1 -b rolling https://github.com/micro-ROS/micro_ros_setup.git src/micro_ros_setup \
5+
RUN git clone --depth 1 -b jazzy https://github.com/micro-ROS/micro_ros_setup.git src/micro_ros_setup \
66
&& . /opt/ros/$ROS_DISTRO/setup.sh \
77
&& apt update \
88
&& apt install -y ed python3-pip \

micro-ROS-demos/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microros/base:rolling
1+
FROM microros/base:jazzy
22

33
WORKDIR /uros_ws
44

micro-ROS-static-library-builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ros:rolling
1+
FROM ros:jazzy
22

33
RUN mkdir -p uros_ws
44
WORKDIR uros_ws
@@ -27,7 +27,7 @@ RUN apt update \
2727
&& rm -rf xtensa-esp32-elf-gcc8_4_0-esp-2021r2-linux-amd64.tar.gz
2828

2929
# Install micro-ROS
30-
RUN git clone -b rolling https://github.com/micro-ROS/micro-ros-build.git src/micro-ros-build \
30+
RUN git clone -b jazzy https://github.com/micro-ROS/micro-ros-build.git src/micro-ros-build \
3131
&& . /opt/ros/$ROS_DISTRO/setup.sh \
3232
&& apt update \
3333
&& apt install -y rsync python3-pip python3-nose clang-format pyflakes3 python3-mypy python3-pytest-mock gperf ros-$ROS_DISTRO-osrf-testing-tools-cpp python3-lttng ros-$ROS_DISTRO-mimick-vendor python3-babeltrace \

0 commit comments

Comments
 (0)