Skip to content

Commit

Permalink
Add ABI compatibility check
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Apr 28, 2024
1 parent cf8b671 commit 63bbca1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/abi-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: ABI Compatibility Check
on:
workflow_dispatch:
pull_request:
branches:
- ros2-master

jobs:
abi_check:
runs-on: ubuntu-latest
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

0 comments on commit 63bbca1

Please sign in to comment.