Commit 52c681a 1 parent 65e0cab commit 52c681a Copy full SHA for 52c681a
File tree 3 files changed +9
-10
lines changed
3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: build
2
2
on :
3
3
pull_request :
4
4
push :
5
- branches : [ rolling ]
5
+ branches : [ jazzy ]
6
6
workflow_dispatch :
7
7
schedule :
8
8
# Run every morning to detect flakiness and broken dependencies
17
17
fail-fast : false
18
18
matrix :
19
19
include :
20
- # Rolling (source)
21
- - ROS_DISTRO : rolling
22
- BUILD_TYPE : source
23
20
# Jazzy (binary)
24
21
- ROS_DISTRO : jazzy
25
22
BUILD_TYPE : binary
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: style
2
2
on :
3
3
pull_request :
4
4
push :
5
- branches : [ rolling ]
5
+ branches : [ jazzy ]
6
6
defaults :
7
7
run :
8
8
shell : bash
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- distro : ['jazzy', 'rolling' ]
15
+ distro : ['jazzy']
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