diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2025-09-28 12:34:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-28 12:34:21 -0400 |
| commit | 275c1a3cc160ad9d3a4ddae0c65467cdb1bdf1b3 (patch) | |
| tree | ff8dd4ee0754875923d458b4a647d257c477ea74 /.github/workflows | |
| parent | 4942b2c15f1fadfe769534bcf3f80c0895a5a2a1 (diff) | |
| parent | b9c96f3d2c722fd210cec0694d257b0296d13964 (diff) | |
Merge pull request #14883 from crobibero/code-analysis
Only include custom code analysis for debug builds
Diffstat (limited to '.github/workflows')
| -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 94d54ecee..702dd29b8 100644 --- a/.github/workflows/ci-compat.yml +++ b/.github/workflows/ci-compat.yml @@ -105,7 +105,7 @@ jobs: run: | { 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 Jellyfin.CodeAnalysis.dll; do + 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 )" if [ "APICompat ran successfully without finding any breaking changes." != "${COMPAT_OUTPUT}" ]; then printf "\n${file}\n${COMPAT_OUTPUT}\n" |
