-
Notifications
You must be signed in to change notification settings - Fork 1.1k
59 lines (57 loc) · 1.87 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: build
on:
push:
branches:
- master
- 2refactory
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v1
- name: Install libmsquic
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get -y install libmsquic
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Set env
run: |
echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" >> $GITHUB_ENV
echo "DOTNET_hostBuilder:reloadConfigOnChange=false" >> $GITHUB_ENV
- name: Clean
run: |
dotnet clean ./SuperSocket.sln --configuration Release
dotnet clean ./samples/samples.sln --configuration Release
dotnet nuget locals all --clear
- name: Build
run: dotnet build -c Release
- name: Build Samples
run: dotnet build -c Release samples/samples.sln
- name: Test - Linux
if: runner.os == 'Linux'
run: |
cd test/SuperSocket.Tests
dotnet test
- name: Test - macOS
if: runner.os == 'macOS'
run: |
cd test/SuperSocket.Tests
dotnet test --filter FullyQualifiedName\!~TestQuicSupport
- name: Test - Windows
if: runner.os == 'Windows'
run: |
cd test/SuperSocket.Tests
dotnet test --filter FullyQualifiedName!~TestQuicSupport