-
Notifications
You must be signed in to change notification settings - Fork 121
52 lines (49 loc) · 1.63 KB
/
kilted-binary-build.yml
File metadata and controls
52 lines (49 loc) · 1.63 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)
name: Kilted - Binary Build
on:
pull_request: &event
branches:
- kilted
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '**.py'
- '**.yaml'
- '.github/workflows/kilted-binary-build.yml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'control_toolbox-not-released.kilted.repos'
- '**.xml'
push: *event
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '28 6 * * MON-FRI'
concurrency:
# cancel previous runs of the same workflow, except for pushes on given branches branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
jobs:
binary:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
strategy:
fail-fast: false
matrix:
ROS_REPO: [main, testing]
with:
ros_distro: kilted
ros_repo: ${{ matrix.ROS_REPO }}
upstream_workspace: control_toolbox-not-released.kilted.repos
ref_for_scheduled_build: kilted
binary_clang:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
with:
ros_distro: kilted
ros_repo: testing
upstream_workspace: control_toolbox-not-released.kilted.repos
ref_for_scheduled_build: kilted
additional_debs: clang
c_compiler: clang
cxx_compiler: clang++
not_test_build: true