RHEL Iron Semi-Binary Build #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Iron RHEL Binary Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- iron | |
pull_request: | |
branches: | |
- iron | |
schedule: | |
# Run every day to detect flakiness and broken dependencies | |
- cron: '03 1 * * *' | |
jobs: | |
iron_rhel_binary: | |
name: Iron RHEL binary build | |
runs-on: ubuntu-latest | |
env: | |
ROS_DISTRO: iron | |
container: ghcr.io/ros-controls/ros:iron-rhel | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: src/ros2_control | |
- run: | | |
rosdep update | |
rosdep install -iyr --from-path src/ros2_control || true | |
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash | |
colcon build --packages-skip rqt_controller_manager | |
colcon test --packages-skip rqt_controller_manager ros2controlcli | |
colcon test-result |