forked from NoCode-NoLife/Melia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (22 loc) · 801 Bytes
/
.travis.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
language: csharp
solution: Melia.sln
branches:
only:
- master
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/1a9843b31f10f292cf44
on_success: change
on_failure: always
on_start: never
install:
- nuget restore Melia.sln
#- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
- wget http://aura-project.org/xunit.runners.1.9.2.zip
- unzip xunit.runners.1.9.2.zip
script:
#- xbuild /p:Configuration=Release Melia.sln
- msbuild Melia.sln /property:Configuration=Release
- mono --debug ./testrunner/xunit.runners.*/tools/xunit.console.clr4.exe ./src/Test.ChannelServer/bin/Release/Test.ChannelServer.dll
- mono --debug ./testrunner/xunit.runners.*/tools/xunit.console.clr4.exe ./src/Test.Shared/bin/Release/Test.Shared.dll