Skip to content

Commit bb0b56e

Browse files
committed
Don't run test for rolling on Windows temporarily
The latest ROS2 rolling is migrating to `pixi` to install dependencies on Windows platform, which causes the failure of running unit tests, we are going to disable it temporarily. See details: - https://docs.ros.org/en/rolling/Installation/Windows-Install-Binary.html - RobotWebTools#1101 Fix: RobotWebTools#1102
1 parent 88d15f4 commit bb0b56e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/windows-build-and-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: rclnodejs - Windows Build & Test
32

43
on:
@@ -61,4 +60,4 @@ jobs:
6160
run: |
6261
call "c:\dev\${{ needs.identify-ros-distro.outputs.distro }}\ros2-windows\setup.bat"
6362
cmd /c "if ${{ needs.identify-ros-distro.outputs.distro }}==foxy (set RMW_IMPLEMENTATION=rmw_cyclonedds_cpp&&npm test)"
64-
cmd /c "if NOT ${{ needs.identify-ros-distro.outputs.distro }}==foxy (npm test)"
63+
cmd /c "if NOT ${{ needs.identify-ros-distro.outputs.distro }}==foxy if NOT ${{ needs.identify-ros-distro.outputs.distro }}==rolling (npm test)"

0 commit comments

Comments
 (0)