From dd5cfb5a7572dd9d344acceb88bc51d6c992e5ce Mon Sep 17 00:00:00 2001 From: Kerry Jiang Date: Fri, 10 May 2024 20:57:08 -0700 Subject: [PATCH] adjusted pipeline for QUIC --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4cfa7689..098429ccc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,11 @@ jobs: runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v1 + - name: Install libmsquic + if: runner.os == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get -y install libmsquic - name: Setup .NET Core uses: actions/setup-dotnet@v3 with: @@ -38,6 +43,12 @@ jobs: - name: Build Samples run: dotnet build -c Release samples/samples.sln - name: Test + if: runner.os != 'macos-latest' run: | cd test/SuperSocket.Tests dotnet test + - name: Test + if: runner.os == 'macos-latest' + run: | + cd test/SuperSocket.Tests + dotnet test --filter Category!=QUIC \ No newline at end of file