Skip to content

[CI] Renew workflows #174

[CI] Renew workflows

[CI] Renew workflows #174

name: RHEL Rolling Binary Build
on:
workflow_dispatch:
pull_request:
branches:
- master
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '42 4 * * *'
jobs:
rolling_rhel_binary:
name: Rolling RHEL binary build
runs-on: ubuntu-latest
env:
ROS_DISTRO: rolling
container: ghcr.io/ros-controls/ros:rolling-rhel
steps:
- uses: actions/checkout@v4
with:
path: src/kinematics_interface
# default behavior is correct on master branch
# ref: ${{ github.event_name == 'schedule' && 'master' || '' }}
- name: Install dependencies
run: |
rosdep update
rosdep install -iyr --from-path src/kinematics_interface || true
- name: Build and test
run: |
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash
source /opt/ros2_ws/install/setup.bash
colcon build
colcon test
colcon test-result --verbose