Skip to content

Commit 8c0b5da

Browse files
committed
Initial changes for Rolling release (#255)
* Initial renaming * Update RCL to master * Update branches * Update CI * Update host * Update nuttx * Fix yaml * Update host Update apps repos to main (#259) * Update freertos apps * Update raspbian apps * Update Zephyr apps * Remove tinydir * Update ROS2 tracing * Speedup host build Update readme Mbed initial support (#266) Update Revert "Fix RCLC to foxy branch (#296)" This reverts commit 8fd6b5e. Revert "Mbed initial support (#266)" This reverts commit 4e74a620ebe3e54778480f91d8429cad10fd3134. Mbed initial support (#266) Update Update Revert "Mbed initial support (#266)" This reverts commit 6fe1865.
1 parent 9c7cdb7 commit 8c0b5da

File tree

17 files changed

+50
-62
lines changed

17 files changed

+50
-62
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
micro_ros_build:
1111
runs-on: ubuntu-latest
12-
container: ros:${{github.base_ref}}
12+
container: ros:rolling
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -39,7 +39,7 @@ jobs:
3939

4040
micro_ros_agent:
4141
runs-on: ubuntu-latest
42-
container: ros:${{github.base_ref}}
42+
container: ros:rolling
4343
needs: micro_ros_build
4444

4545
steps:
@@ -76,7 +76,7 @@ jobs:
7676
7777
micro_ros_client:
7878
runs-on: ubuntu-latest
79-
container: ros:${{github.base_ref}}
79+
container: ros:rolling
8080
needs: micro_ros_build
8181

8282
strategy:
@@ -207,7 +207,7 @@ jobs:
207207
208208
- name: Configure and build micro-ROS
209209
run: |
210-
. /opt/ros/foxy/setup.sh
210+
. /opt/ros/rolling/setup.sh
211211
. install/local_setup.sh
212212
ros2 run micro_ros_setup create_firmware_ws.sh ${{ matrix.rtos }} ${{ matrix.platform }}
213213
ros2 run micro_ros_setup configure_firmware.sh ${{ matrix.configuration }} ${{ matrix.transport_arguments }}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ This package targets the **ROS 2** installation. ROS 2 supported distributions a
6161
| Crystal | Supported | `crystal` |
6262
| Dashing | Supported | `dashing` |
6363
| Foxy | Supported | `foxy` |
64+
| Rolling | Supported | `main` |
6465

6566
Some other prerequisites needed for building a firmware using this package are:
6667

@@ -77,7 +78,7 @@ source /opt/ros/$ROS_DISTRO/setup.bash
7778

7879
mkdir uros_ws && cd uros_ws
7980

80-
git clone -b $ROS_DISTRO https://github.com/micro-ROS/micro_ros_setup.git src/micro_ros_setup
81+
git clone -b master https://github.com/micro-ROS/micro_ros_setup.git src/micro_ros_setup
8182

8283
rosdep update && rosdep install --from-path src --ignore-src -y
8384

config/agent_uros_packages.repos

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ repositories:
33
uros/rosidl_typesupport_microxrcedds:
44
type: git
55
url: https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git
6-
version: foxy
6+
version: main
77
uros/rmw_microxrcedds:
88
type: git
99
url: https://github.com/micro-ROS/rmw-microxrcedds.git
10-
version: foxy
10+
version: main
1111
uros/micro_ros_msgs:
1212
type: git
1313
url: https://github.com/micro-ROS/micro_ros_msgs.git
14-
version: foxy
14+
version: main
1515
uros/micro-ROS-Agent:
1616
type: git
1717
url: https://github.com/micro-ROS/micro-ROS-Agent.git

config/client_uros_packages.repos

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,38 +12,32 @@ repositories:
1212
uros/rcl:
1313
type: git
1414
url: https://github.com/micro-ROS/rcl
15-
version: foxy
15+
version: master
1616
uros/rclc:
1717
type: git
1818
url: https://github.com/ros2/rclc
19-
version: foxy
19+
version: master
2020
uros/rcutils:
2121
type: git
2222
url: https://github.com/micro-ROS/rcutils
23-
version: foxy
23+
version: master
2424
uros/micro_ros_msgs:
2525
type: git
2626
url: https://github.com/micro-ROS/micro_ros_msgs.git
27-
version: foxy
27+
version: main
2828
uros/rmw_microxrcedds:
2929
type: git
3030
url: https://github.com/micro-ROS/rmw-microxrcedds.git
31-
version: foxy
31+
version: main
3232
uros/rosidl_typesupport:
3333
type: git
3434
url: https://github.com/micro-ROS/rosidl_typesupport.git
35-
version: foxy
35+
version: master
3636
uros/rosidl_typesupport_microxrcedds:
3737
type: git
3838
url: https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git
39-
version: foxy
39+
version: main
4040
uros/tracetools:
4141
type: git
4242
url: https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing
43-
version: foxy_microros
44-
45-
# Remove this when it returns to ros2.repos
46-
ros2/tinydir_vendor:
47-
type: git
48-
url: https://github.com/ros2/tinydir_vendor.git
4943
version: master

config/freertos/crazyflie21/board.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ repositories:
77
freertos_apps:
88
type: git
99
url: https://github.com/micro-ROS/freertos_apps
10-
version: foxy
10+
version: main
1111

config/freertos/esp32/board.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ repositories:
22
freertos_apps:
33
type: git
44
url: https://github.com/micro-ROS/freertos_apps
5-
version: foxy
5+
version: main
66

77

88

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repositories:
22
freertos_apps:
33
type: git
4-
url: https://github.com/micro-ROS/freertos_apps
5-
version: foxy
4+
url: https://github.com/micro-ros/freertos_apps
5+
version: main
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repositories:
22
freertos_apps:
33
type: git
4-
url: https://github.com/micro-ROS/freertos_apps
5-
version: foxy
4+
url: https://github.com/micro-ros/freertos_apps
5+
version: main
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repositories:
22
freertos_apps:
33
type: git
4-
url: https://github.com/micro-ROS/freertos_apps
5-
version: foxy
4+
url: https://github.com/micro-ros/freertos_apps
5+
version: main
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repositories:
22
freertos_apps:
33
type: git
4-
url: https://github.com/micro-ROS/freertos_apps
5-
version: foxy
4+
url: https://github.com/micro-ros/freertos_apps
5+
version: main

0 commit comments

Comments
 (0)