From c810d30e927c9638fefc065e11d3b3f7fc5a8a31 Mon Sep 17 00:00:00 2001 From: Kerry Jiang Date: Sat, 11 May 2024 09:53:38 -0700 Subject: [PATCH] only run tests about quic in linux --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5db4af990..40028746e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,13 +42,13 @@ jobs: run: dotnet build -c Release - name: Build Samples run: dotnet build -c Release samples/samples.sln - - name: Test - Not macOS - if: runner.os != 'macOS' + - name: Test - Linux + if: runner.os == 'Linux' run: | cd test/SuperSocket.Tests dotnet test - - name: Test - macOS - if: runner.os == 'macOS' + - name: Test - NoLinux + if: runner.os != 'Linux' run: | cd test/SuperSocket.Tests dotnet test --filter FullyQualifiedName!~QuicHostConfigurator \ No newline at end of file