From 6405afacbdb78c06189fa508e510f1f9769bd2f6 Mon Sep 17 00:00:00 2001 From: Christoph Froehlich Date: Tue, 5 Nov 2024 18:22:51 +0000 Subject: [PATCH] Add semi-binary build --- .github/workflows/build-semi-binary.yml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build-semi-binary.yml diff --git a/.github/workflows/build-semi-binary.yml b/.github/workflows/build-semi-binary.yml new file mode 100644 index 00000000..85af9a2f --- /dev/null +++ b/.github/workflows/build-semi-binary.yml @@ -0,0 +1,27 @@ +# 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: Semi-Binary Build +on: + pull_request: + push: + branches: + - ros2-master + schedule: + # Run every day to detect flakiness and broken dependencies + - cron: '28 6 * * *' + + +jobs: + semi-binary: + uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master + strategy: + fail-fast: false + matrix: + ROS_DISTRO: [rolling, jazzy, iron, humble] + ROS_REPO: [main, testing] + with: + ros_distro: ${{ matrix.ROS_DISTRO }} + ros_repo: ${{ matrix.ROS_REPO }} + upstream_workspace: control_toolbox.${{ matrix.ROS_DISTRO }}.repos + ref_for_scheduled_build: ros2-master