We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddaecd2 commit 64534bbCopy full SHA for 64534bb
.github/workflows/humble-binary-build-rhel.yml
@@ -0,0 +1,29 @@
1
+name: Humble Binary Build RHEL
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - humble
6
+ push:
7
8
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