diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-01-24 11:58:44 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-02-10 16:56:45 +0100 |
commit | b64f63aba4b9af99120d670656f1c76e3d8cb855 (patch) | |
tree | 2995cf2b767c32c64f80823a4d9a59b32d28954c | |
parent | 33e53dc059944001bee77dc8861e2df70672d7d1 (diff) | |
download | libfuse-b64f63aba4b9af99120d670656f1c76e3d8cb855.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 |