forked from NLua/KeraLua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (27 loc) · 712 Bytes
/
Copy path.travis.yml
File metadata and controls
34 lines (27 loc) · 712 Bytes
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
#
# KeraLua Travis-CI Hook
#
language: csharp
before_install:
- export PATH=/opt/mono/bin:$PATH
install:
- sudo apt-get install mono-devel nunit nuget
script:
- nuget restore KeraLua.sln
- msbuild KeraLua.sln /p:Configuration=Release /t:Restore
- msbuild KeraLua.sln /p:Configuration=Release
- mono packages/NUnit.ConsoleRunner.3.10.0/tools/nunit3-console.exe ./tests/build/net45/bin/Release/KeraLuaTest.dll
# Execute additional tests or commands
#after_script:
# - [run additional test commans]
# Only watch the master branch
branches:
only:
- master
# Notify if needed
notifications:
recipients:
- viniciusjarina@gmail.com
email:
on_success: change
on_failure: always