Skip to content

Commit 24c68da

Browse files
committed
Disable ssh access for appveyor macos CI.
1 parent 9af111d commit 24c68da

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.appveyor-mac.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ skip_tags: true
99
image: macos
1010
environment:
1111
APPVEYOR_SSH_KEY: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOgZaR7bVAJCsBs/yDlzNbHTvhicc1C7SeyEuVwN+Q0l
12-
init:
13-
- sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e -
12+
#init:
13+
# - sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e -
1414
build_script:
1515
- sh: |
1616
uname -a
@@ -27,7 +27,7 @@ test_script:
2727
# TODO: Track down why macos fails to determine the local interface for IPv6 destinations on approx. every second test run.
2828
# possibly to do with different vm configs but same thing is happening on both appveyor and GitHub Actions CI's.
2929
- dotnet test test/unit/SIPSorcery.UnitTests.csproj -c Release --framework net6.0
30-
on_finish:
31-
- sh: export APPVEYOR_SSH_BLOCK=true
32-
- sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e -
30+
#on_finish:
31+
# - sh: export APPVEYOR_SSH_BLOCK=true
32+
# - sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e -
3333

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ The diagram below is a high level overview of a Real-time audio and video call b
3535

3636
## Installation
3737

38-
The library is compliant with .NET Standard 2.0 (encompassing .NET Core 2.0+), .NET Framework 4.6.1 (theoretically also encompassed by `netstandard2.0` but set as an explicit target due to compatibility issues between the two) and .NET 5. The demo applications mainly target .NET Core 3.1 with newer ones targeting .NET 5. It is available via NuGet.
38+
The library is compliant with .NET Standard 2.0 (encompassing .NET Core 2.0+), .NET Framework 4.6.1 (theoretically also encompassed by `netstandard2.0` but set as an explicit target due to compatibility issues between the two), .NET 5 and .NET 6. The demo applications mainly target .NET Core 3.1 with newer ones targeting .NET 5 or 6. The library is available via NuGet.
3939

40-
For .NET Core:
40+
For .NET Core and .NET 5 & 6:
4141

4242
````bash
43-
dotnet add package SIPSorcery -v 5.1.2
43+
dotnet add package SIPSorcery
4444
````
4545

4646
With Visual Studio Package Manager Console (or search for [SIPSorcery on NuGet](https://www.nuget.org/packages/SIPSorcery/)):
4747

4848
````ps1
49-
Install-Package SIPSorcery -v 5.1.2
49+
Install-Package SIPSorcery
5050
````
5151

5252
## Documentation
@@ -61,12 +61,12 @@ For WebRTC testing the [webrtc-echoes](https://github.com/sipsorcery/webrtc-echo
6161

6262
## Getting Started VoIP
6363

64-
The simplest possible example to place an audio-only SIP call is shown below. This example relies on the Windows specific `SIPSorceryMedia.Windows` library to play the received audio and only works on Windows (due to lack of .NET Core audio device support on non-Windows platforms).
64+
The simplest possible example to place an audio-only SIP call is shown below. This example relies on the Windows specific `SIPSorceryMedia.Windows` library to play the received audio and only works on Windows (due to lack of .NET audio device support on non-Windows platforms).
6565

6666
````bash
67-
dotnet new console --name SIPGetStarted -f netcoreapp3.1
67+
dotnet new console --name SIPGetStarted
6868
cd SIPGetStarted
69-
dotnet add package SIPSorcery -v 5.1.2
69+
dotnet add package SIPSorcery
7070
dotnet add package SIPSorceryMedia.Windows -v 0.0.31-pre
7171
# Paste the code below into Program.cs.
7272
dotnet run

0 commit comments

Comments
 (0)