Skip to content

Commit dd5cfb5

Browse files
committed
adjusted pipeline for QUIC
1 parent 90b389b commit dd5cfb5

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
runs-on: ${{matrix.os}}
2121
steps:
2222
- uses: actions/checkout@v1
23+
- name: Install libmsquic
24+
if: runner.os == 'ubuntu-latest'
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get -y install libmsquic
2328
- name: Setup .NET Core
2429
uses: actions/setup-dotnet@v3
2530
with:
@@ -38,6 +43,12 @@ jobs:
3843
- name: Build Samples
3944
run: dotnet build -c Release samples/samples.sln
4045
- name: Test
46+
if: runner.os != 'macos-latest'
4147
run: |
4248
cd test/SuperSocket.Tests
4349
dotnet test
50+
- name: Test
51+
if: runner.os == 'macos-latest'
52+
run: |
53+
cd test/SuperSocket.Tests
54+
dotnet test --filter Category!=QUIC

0 commit comments

Comments
 (0)