Skip to content

Commit 64534bb

Browse files
author
Felix Exner
committed
Add rhel workflow
1 parent ddaecd2 commit 64534bb

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Humble Binary Build RHEL
2+
on:
3+
pull_request:
4+
branches:
5+
- humble
6+
push:
7+
branches:
8+
- humble
9+
10+
jobs:
11+
humble_binary_rhel:
12+
name: humble binary build
13+
runs-on: ubuntu-latest
14+
container: ghcr.io/ros-controls/ros:rolling-rhel
15+
strategy:
16+
fail-fast: false
17+
env:
18+
ROS_DISTRO: humble
19+
steps:
20+
- uses: actions/checkout@v1
21+
with:
22+
path: src/ur_ros2_driver
23+
# As long as industrial-ci doesn't support using anything different than ubuntu, we'll just
24+
# build it manually.
25+
- run: |
26+
rosdep update
27+
rosdep install -y --from-path --ignore-src src
28+
source /opt/ros/${{ env.ROS_DISTRO }}/setup.bash
29+
colcon build

0 commit comments

Comments
 (0)