File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments