diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-01-24 11:58:44 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-01-24 12:30:52 +0100 |
commit | da3c7e6216a929beac902991004c500993d87d95 (patch) | |
tree | 2995cf2b767c32c64f80823a4d9a59b32d28954c | |
parent | 48d12f86e73e456b53defc4a8a98ed4db8a54b39 (diff) | |
download | libfuse-da3c7e6216a929beac902991004c500993d87d95.tar.gz |
abidiff: Don't warn about added symbols
So far we only want it to warn about changed symbols.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
-rw-r--r-- | .github/workflows/abicheck.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/abicheck.yml b/.github/workflows/abicheck.yml index c75d912..526fb42 100644 --- a/.github/workflows/abicheck.yml +++ b/.github/workflows/abicheck.yml @@ -57,7 +57,8 @@ jobs: meson compile -C build - name: Run abidiff - run: abidiff + run: abidiff + --no-added-syms --headers-dir1 previous/include/ --headers-dir2 current/include/ previous/build/lib/libfuse3.so |