Commit e34e3fa 1 parent 79fc5ce commit e34e3fa Copy full SHA for e34e3fa
File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 20
20
# Rolling (source)
21
21
- ROS_DISTRO : rolling
22
22
BUILD_TYPE : source
23
- # Jazzy (binary)
24
- - ROS_DISTRO : jazzy
23
+ # Rolling (binary)
24
+ - ROS_DISTRO : rolling
25
25
BUILD_TYPE : binary
26
26
env :
27
27
ROS2_REPOS_FILE_URL : ' https://raw.githubusercontent.com/ros2/ros2/${{ matrix.ROS_DISTRO }}/ros2.repos'
Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- distro : ['jazzy', ' rolling']
15
+ distro : ['rolling']
16
16
container :
17
17
image : ros:${{ matrix.distro }}-ros-base
18
18
timeout-minutes : 30
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ A ROS 2 RMW implementation based on Zenoh that is written using the zenoh-c bind
10
10
For information about the Design please visit [ design] ( docs/design.md ) page.
11
11
12
12
## Requirements
13
- - [ ROS 2] ( https://docs.ros.org ) : Rolling/Jazzy/Iron
13
+ - [ ROS 2] ( https://docs.ros.org )
14
14
15
+ > Note: See available distro branches, eg. ` jazzy ` , for supported ROS 2 distributions.
15
16
16
17
## Setup
17
18
@@ -22,11 +23,12 @@ The `ZENOHC_CARGO_FLAGS` CMake argument may be overwritten with other features i
22
23
See [ zenoh_cpp_vendor/CMakeLists.txt] ( ./zenoh_cpp_vendor/CMakeLists.txt ) for more details.
23
24
24
25
``` bash
26
+ # replace <DISTRO> with ROS 2 distro of choice
25
27
mkdir ~ /ws_rmw_zenoh/src -p && cd ~ /ws_rmw_zenoh/src
26
- git clone https://github.com/ros2/rmw_zenoh.git
28
+ git clone https://github.com/ros2/rmw_zenoh.git -b < DISTRO >
27
29
cd ~ /ws_rmw_zenoh
28
- rosdep install --from-paths src --ignore-src --rosdistro < DISTRO> -y # replace <DISTRO> with ROS 2 distro of choice
29
- source /opt/ros/< DISTRO> /setup.bash # replace <DISTRO> with ROS 2 distro of choice
30
+ rosdep install --from-paths src --ignore-src --rosdistro < DISTRO> -y
31
+ source /opt/ros/< DISTRO> /setup.bash
30
32
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
31
33
```
32
34
You can’t perform that action at this time.
0 commit comments