forked from AddictedCS/soundfingerprinting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
20 lines (19 loc) · 964 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: csharp
mono: latest
dotnet: 2.1.300
solution: src/SoundFingerprinting.sln
install:
- nuget install NUnit.Runners -Version 3.5.0 -OutputDirectory build/testrunner
script:
- dotnet restore ./src/SoundFingerprinting.sln
- dotnet test ./src/SoundFingerprinting.Tests/SoundFingerprinting.Tests.csproj -c Release -f netcoreapp2.0
- export FrameworkPathOverride=/usr/lib/mono/4.5/
- dotnet build ./src/SoundFingerprinting.Tests/SoundFingerprinting.Tests.csproj -c Release -f net45
- mono build/testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe src/SoundFingerprinting.Tests/bin/Release/net45/SoundFingerprinting.Tests.dll
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/846dee77235fe9abbb02
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always