From 0320d637a968ed2c91a1ddfcbf7e7886115cfdfc Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 29 Mar 2025 21:42:59 +0100 Subject: [PATCH] CI: ntldd: filter out some new windows libs See https://github.com/msys2/MINGW-packages/pull/23760#issuecomment-2757820035 --- .ci/ci-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci-build.sh b/.ci/ci-build.sh index e2a2b814d8..f697bd095e 100755 --- a/.ci/ci-build.sh +++ b/.ci/ci-build.sh @@ -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::"