From edb5cde15dadfc01b51233886fa026c0bb57e7f9 Mon Sep 17 00:00:00 2001 From: Ziya Suzen Date: Wed, 13 Nov 2024 00:15:42 +0000 Subject: [PATCH] Suppress MsQuicApi warnings in build output --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b10419d1e..f748435e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -115,7 +115,9 @@ jobs: cd tests/NATS.Client.CheckNativeAot rm -rf bin obj - dotnet publish -r linux-x64 -c Release -o dist | tee output.txt + + # temporarily ignore MsQuicApi warnings + dotnet publish -r linux-x64 -c Release -o dist | grep -v MsQuicApi | tee output.txt # check for warnings grep -i warning output.txt && exit 1