forked from sipsorcery-org/sipsorcery
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (33 loc) · 1.1 KB
/
examples-core-win.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
name: examples-win-x64
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-2022
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Build SIP Examples
run: |
dotnet build examples/sipexamples/sipexamples.sln
- name: Build WebRTC Examples
run: |
dotnet build examples/webrtcexamples/webrtcexamples.sln
- name: Build WebRTC Command Line Example
run: |
dotnet build examples/webrtccmdline/webrtccmdline.sln
- name: Build SIP Command Line Example
run: |
dotnet build examples/sipcmdline/sipcmdline.sln --configuration Release
- name: Build STUN Server Example
run: |
dotnet build examples/stunserver/stunserver.sln
- name: Build Soft Phone Example
run: |
dotnet build examples/softphone/sipsorcery.softphone.sln --configuration Release