Skip to content

Commit

Permalink
[CI] RHEL workflows (backport #1302) (#1304)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich authored Jan 18, 2024
1 parent d27bc21 commit c99bd42
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 27 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/humble-rhel-binary-build.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
name: Humble RHEL Binary Build
on:
workflow_dispatch:
push:
branches:
- humble
# pull_request:
# branches:
# - humble
# push:
# branches:
# - humble
# schedule:
# # Run every day to detect flakiness and broken dependencies
# - cron: '03 1 * * *'
pull_request:
branches:
- humble
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'

jobs:
humble_rhel_binary:
Expand All @@ -26,7 +24,8 @@ jobs:
path: src/ros2_control
- run: |
rosdep update
rosdep install -iy --from-path src/ros2_control
rosdep install -iyr --from-path src/ros2_control || true
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash
colcon build
colcon test
colcon build --packages-skip rqt_controller_manager
colcon test --packages-skip rqt_controller_manager ros2controlcli
colcon test-result
24 changes: 12 additions & 12 deletions .github/workflows/iron-rhel-binary-build.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
name: Iron RHEL Binary Build
on:
workflow_dispatch:
push:
branches:
- iron
# pull_request:
# branches:
# - iron
# push:
# branches:
# - iron
# schedule:
# # Run every day to detect flakiness and broken dependencies
# - cron: '03 1 * * *'
pull_request:
branches:
- iron
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'


jobs:
iron_rhel_binary:
Expand All @@ -26,7 +25,8 @@ jobs:
path: src/ros2_control
- run: |
rosdep update
rosdep install -iy --from-path src/ros2_control
rosdep install -iyr --from-path src/ros2_control || true
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash
colcon build
colcon test
colcon build --packages-skip rqt_controller_manager
colcon test --packages-skip rqt_controller_manager ros2controlcli
colcon test-result
10 changes: 7 additions & 3 deletions .github/workflows/rolling-rhel-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'
Expand All @@ -22,7 +25,8 @@ jobs:
path: src/ros2_control
- run: |
rosdep update
rosdep install -iy --from-path src/ros2_control
rosdep install -iyr --from-path src/ros2_control || true
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash
colcon build
colcon test
colcon build --packages-skip rqt_controller_manager
colcon test --packages-skip rqt_controller_manager ros2controlcli
colcon test-result

0 comments on commit c99bd42

Please sign in to comment.