Skip to content

Commit 8e60c1f

Browse files
committed
[CI] Always run PRERELEASE tests
Our current CI configuration only ran prerelease tests for ROS2. We recently had a CMake breakage for Python2 Cf. ros/rosdistro#34135 (comment) stack-of-tasks/eigenpy-ros-release#4
1 parent 3951be0 commit 8e60c1f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ros_ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ jobs:
1111
strategy:
1212
matrix:
1313
env:
14-
- {ROS_DISTRO: melodic}
15-
- {ROS_DISTRO: noetic, BUILDER: catkin_tools}
14+
- {ROS_DISTRO: melodic, PRERELEASE: false}
15+
- {ROS_DISTRO: noetic}
1616
- {ROS_DISTRO: foxy}
1717
- {ROS_DISTRO: galactic}
18-
- {ROS_DISTRO: foxy, PRERELEASE: true}
19-
- {ROS_DISTRO: galactic, PRERELEASE: true}
18+
- {ROS_DISTRO: rolling}
19+
- {ROS_DISTRO: humble}
2020
env:
2121
CCACHE_DIR: /github/home/.ccache # Enable ccache
22+
PRERELEASE: true
23+
BUILDER: colcon
2224
runs-on: ubuntu-latest
2325
steps:
2426
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)