Skip to content

Commit f50255e

Browse files
committed
Update ci.yml and nightly.yml
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
1 parent cf29aa1 commit f50255e

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
# Installing micro-ROS prerequisites
4141
pip3 install catkin_pkg lark-parser empy colcon-common-extensions
4242
43+
if [ ${{ github.ref_name }} == "humble" ] || [ ${{ github.head_ref }} == *"humble"* ]; then
44+
# Use empy version 3.3.4 for Humble
45+
pip3 install empy==3.3.4
46+
fi
47+
4348
# Build with Serial USB transport
4449
west build -b disco_l475_iot1 $GITHUB_WORKSPACE/micro_ros_zephyr_module -p -- -DCONFIG_MICROROS_TRANSPORT_SERIAL_USB=y
4550

.github/workflows/nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ jobs:
4949
# Installing micro-ROS prerequisites
5050
pip3 install catkin_pkg lark-parser empy colcon-common-extensions
5151
52+
if [ ${{ matrix.branch }} == "humble" ]; then
53+
# Use empy version 3.3.4 for Humble
54+
pip3 install empy==3.3.4
55+
fi
56+
5257
# Build with Serial USB transport
5358
west build -b disco_l475_iot1 $GITHUB_WORKSPACE/micro_ros_zephyr_module -p -- -DCONFIG_MICROROS_TRANSPORT_SERIAL_USB=y
5459

0 commit comments

Comments
 (0)