CI: ntldd: filter out some new windows libs

See https://github.com/msys2/MINGW-packages/pull/23760#issuecomment-2757820035
This commit is contained in:
Christoph Reiter 2025-03-29 21:42:59 +01:00
parent aed3f7807c
commit 0320d637a9

View File

@ -166,7 +166,7 @@ for package in "${packages[@]}"; do
if [ "${#binaries[@]}" -ne 0 ]; then
for binary in ${binaries[@]}; do
echo "${binary}:"
ntldd -R ${binary} | grep -v "ext-ms\|api-ms\|WINDOWS\|Windows\|HvsiFileTrust\|wpaxholder\|ngcrecovery\|AzureAttest\|PdmUtilities\|WTDSENSOR\|wtdccm" || true
ntldd -R ${binary} | grep -v "ext-ms\|api-ms\|WINDOWS\|Windows\|HvsiFileTrust\|wpaxholder\|ngcrecovery\|AzureAttest\|PdmUtilities\|WTDSENSOR\|wtdccm\|SAMSRV\|LSASRV" || true
done
fi
echo "::endgroup::"