From f2b7b89039d700fd3bbabc5bb39e6075a61e0bb5 Mon Sep 17 00:00:00 2001 From: Christoph Froehlich Date: Fri, 1 Nov 2024 17:59:08 +0000 Subject: [PATCH] Use reusable wf for ABI --- .github/workflows/abi-compatibility.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/abi-compatibility.yml b/.github/workflows/abi-compatibility.yml index a5719664..2c48e99f 100644 --- a/.github/workflows/abi-compatibility.yml +++ b/.github/workflows/abi-compatibility.yml @@ -7,16 +7,10 @@ on: jobs: abi_check: - runs-on: ubuntu-latest + uses: ./../ros2_control_ci/.github/workflows/reusable-abi-check.yml strategy: fail-fast: false matrix: ROS_DISTRO: [rolling, jazzy, iron, humble] - steps: - - uses: actions/checkout@v4 - - uses: ros-industrial/industrial_ci@master - env: - ROS_DISTRO: ${{ matrix.ROS_DISTRO }} - ROS_REPO: main - ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }} - NOT_TEST_BUILD: true + with: + ros_distro: ${{ matrix.ROS_DISTRO }}