Skip to content

Commit 01965cc

Browse files
Copy over CI from ros2_control repo (#8)
1 parent 8335a04 commit 01965cc

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
2+
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)
3+
4+
name: Rolling - Binary Build
5+
on:
6+
pull_request:
7+
push:
8+
branches:
9+
- main
10+
schedule:
11+
# Run every day to detect flakiness and broken dependencies
12+
- cron: '28 6 * * MON-FRI'
13+
14+
concurrency:
15+
# cancel previous runs of the same workflow, except for pushes on given branches branch
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
18+
19+
jobs:
20+
binary:
21+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
ROS_DISTRO: [humble, jazzy, kilted, rolling]
26+
ROS_REPO: [main, testing]
27+
with:
28+
ros_distro: ${{ matrix.ROS_DISTRO }}
29+
ros_repo: ${{ matrix.ROS_REPO }}
30+
ref_for_scheduled_build: master
31+
binary_clang:
32+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
33+
with:
34+
ros_distro: rolling
35+
ros_repo: testing
36+
ref_for_scheduled_build: master
37+
additional_debs: clang
38+
c_compiler: clang
39+
cxx_compiler: clang++
40+
not_test_build: true

0 commit comments

Comments
 (0)