-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
21 lines (20 loc) · 1.04 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: csharp
mono: latest
dotnet: 2.1.300
solution: src/SoundFingerprinting.Audio.Bass.sln
install:
- export BASS_HOME=$TRAVIS_BUILD_DIR/src/SoundFingerprinting.Audio.Bass/x64/
- export LD_LIBRARY_PATH=$BASS_HOME
- nuget restore src/SoundFingerprinting.Audio.Bass.sln
- nuget install NUnit.Runners -Version 3.5.0 -OutputDirectory build/testrunner
script:
- dotnet test ./src/SoundFingerprinting.Audio.Bass.Tests/SoundFingerprinting.Audio.Bass.Tests.csproj -c Release -f netcoreapp2.0
- msbuild /p:Configuration=Release src/SoundFingerprinting.Audio.Bass.sln
- mono build/testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe src/SoundFingerprinting.Audio.Bass.Tests/bin/Release/net461/SoundFingerprinting.Audio.Bass.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