Skip to content

Commit

Permalink
adjusted pipeline for QUIC
Browse files Browse the repository at this point in the history
  • Loading branch information
kerryjiang committed May 11, 2024
1 parent 90b389b commit dd5cfb5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit dd5cfb5

Please sign in to comment.