Skip to content

Commit

Permalink
[CI] debian + RHEL updates (backport #985) and remove EOL workflows (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Feb 9, 2024
1 parent 726b179 commit c950730
Show file tree
Hide file tree
Showing 16 changed files with 111 additions and 298 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/foxy-abi-compatibility.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/foxy-binary-build-main.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/foxy-binary-build-testing.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/foxy-semi-binary-build-main.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/foxy-semi-binary-build-testing.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/galactic-abi-compatibility.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/galactic-binary-build-main.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/galactic-binary-build-testing.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/galactic-rhel-binary-build.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/galactic-semi-binary-build-main.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/galactic-semi-binary-build-testing.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/humble-debian-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Debian Humble Build
on:
workflow_dispatch:
pull_request:
branches:
- humble
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'


jobs:
humble_debian:
name: Humble debian build
runs-on: ubuntu-latest
env:
ROS_DISTRO: humble
container: ghcr.io/ros-controls/ros:humble-debian
steps:
- uses: actions/checkout@v4
with:
path: src/ros2_controllers
- name: Build and test
shell: bash
run: |
source /opt/ros2_ws/install/setup.bash
vcs import src < src/ros2_controllers/ros2_controllers.${{ env.ROS_DISTRO }}.repos
colcon build --packages-skip rqt_controller_manager rqt_joint_trajectory_controller
colcon test --packages-skip rqt_controller_manager rqt_joint_trajectory_controller control_msgs controller_manager_msgs
colcon test-result --verbose
21 changes: 10 additions & 11 deletions .github/workflows/humble-rhel-binary-build.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
name: Humble RHEL Binary Build
name: RHEL Humble Binary Build
on:
workflow_dispatch:
branches:
- humble
pull_request:
branches:
- humble
push:
branches:
- humble
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 2 * * *'


jobs:
humble_rhel_binary:
name: Humble RHEL binary build
Expand All @@ -25,9 +19,14 @@ jobs:
- uses: actions/checkout@v4
with:
path: src/ros2_controllers
- run: |
- name: Install dependencies
run: |
rosdep update
rosdep install -iy --from-path src/ros2_controllers
rosdep install -iyr --from-path src/ros2_controllers || true
- name: Build and test
run: |
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash
colcon build
colcon test
source /opt/ros2_ws/install/setup.bash
colcon build --packages-skip rqt_joint_trajectory_controller
colcon test --packages-skip rqt_joint_trajectory_controller
colcon test-result --verbose
30 changes: 30 additions & 0 deletions .github/workflows/iron-debian-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Debian Iron Build
on:
workflow_dispatch:
pull_request:
branches:
- iron
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'


jobs:
iron_debian:
name: Iron debian build
runs-on: ubuntu-latest
env:
ROS_DISTRO: iron
container: ghcr.io/ros-controls/ros:iron-debian
steps:
- uses: actions/checkout@v4
with:
path: src/ros2_controllers
- name: Build and test
shell: bash
run: |
source /opt/ros2_ws/install/setup.bash
vcs import src < src/ros2_controllers/ros2_controllers.${{ env.ROS_DISTRO }}.repos
colcon build --packages-skip rqt_controller_manager rqt_joint_trajectory_controller
colcon test --packages-skip rqt_controller_manager rqt_joint_trajectory_controller control_msgs controller_manager_msgs
colcon test-result --verbose
Loading

0 comments on commit c950730

Please sign in to comment.