Skip to content

Commit

Permalink
Suppress MsQuicApi warnings in build output
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmk committed Nov 13, 2024
1 parent ffa37d7 commit edb5cde
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit edb5cde

Please sign in to comment.