forked from UniversalRobots/Universal_Robots_Client_Library
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (32 loc) · 865 Bytes
/
rhel_build.yml
File metadata and controls
33 lines (32 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: RHEL Build
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
rhel_build:
name: ${{matrix.ROS_DISTRO.NAME}} (RHEL)
runs-on: ubuntu-latest
container: ghcr.io/ros-controls/ros:${{ matrix.ROS_DISTRO.NAME }}-rhel
env:
path: src/${{ github.repository }}
strategy:
fail-fast: false
matrix:
ROS_DISTRO:
- NAME: humble
- NAME: jazzy
- NAME: kilted
- NAME: rolling
steps:
- uses: actions/checkout@v6
with:
path: ${{ env.path }}
- name: Build workspace
shell: bash
run: |
source /opt/ros/${{ matrix.ROS_DISTRO.NAME }}/setup.bash
source /opt/ros2_ws/install/local_setup.bash
colcon build --event-handlers console_direct+ --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo