diff options
| author | Peaches_MLG <PeachesMLG100@gmail.com> | 2026-01-02 01:46:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-01 18:46:17 -0700 |
| commit | d1055b0b3660d120fed332deb2535986d52d9e0f (patch) | |
| tree | ef32ee710b9de6abf0884d0c136471e57eb5f36c /.github/workflows/ci-compat.yml | |
| parent | d28ee6d71415b4c1f5c158f30f427b6952b8d65b (diff) | |
Fixed issue with ABI Compatability - Difference not completing (#15924)
Diffstat (limited to '.github/workflows/ci-compat.yml')
| -rw-r--r-- | .github/workflows/ci-compat.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-compat.yml b/.github/workflows/ci-compat.yml index a3c49969c..2ca101591 100644 --- a/.github/workflows/ci-compat.yml +++ b/.github/workflows/ci-compat.yml @@ -106,7 +106,7 @@ jobs: { echo 'body<<EOF' for file in Jellyfin.Data.dll MediaBrowser.Common.dll MediaBrowser.Controller.dll MediaBrowser.Model.dll Emby.Naming.dll Jellyfin.Extensions.dll Jellyfin.MediaEncoding.Keyframes.dll Jellyfin.Database.Implementations.dll; do - COMPAT_OUTPUT="$( { apicompat --left ./abi-base/${file} --right ./abi-head/${file}; } 2>&1 )" + COMPAT_OUTPUT="$( { apicompat --left ./abi-base/${file} --right ./abi-head/${file}; } 2>&1 || true )" if [ "APICompat ran successfully without finding any breaking changes." != "${COMPAT_OUTPUT}" ]; then printf "\n${file}\n${COMPAT_OUTPUT}\n" fi |
