-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This CI workflow checks ABI compatibility between the pushed commit and the latest tagged release, helping preventing accidental ABI breaks. Helps with #2043
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# SPDX-FileCopyrightText: 2025 Andrea Pappacoda <andrea@pappacoda.it> | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: abidiff | ||
|
||
on: [push, pull_request] | ||
|
||
defaults: | ||
run: | ||
shell: sh | ||
|
||
jobs: | ||
abi: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: debian:testing | ||
|
||
steps: | ||
- name: Install dependencies | ||
run: apt -y --update install --no-install-recommends | ||
abigail-tools | ||
ca-certificates | ||
g++ | ||
git | ||
libbrotli-dev | ||
libssl-dev | ||
meson | ||
pkg-config | ||
python3 | ||
zlib1g-dev | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
path: current | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
path: previous | ||
fetch-tags: true | ||
|
||
- name: Checkout previous | ||
working-directory: previous | ||
run: git describe --tags --abbrev=0 | xargs git checkout | ||
|
||
- name: Build current | ||
working-directory: current | ||
run: | | ||
meson setup --buildtype=debug -Dcpp-httplib_compile=true build | ||
ninja -C build | ||
- name: Build previous | ||
working-directory: previous | ||
run: | | ||
meson setup --buildtype=debug -Dcpp-httplib_compile=true build | ||
ninja -C build | ||
- name: Run abidiff | ||
run: abidiff | ||
--headers-dir1 previous/build | ||
--headers-dir2 current/build | ||
previous/build/libcpp-httplib.so | ||
current/build/libcpp-httplib.so |