-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
49 lines (46 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: csharp
solution: ABCNet.sln
dist: trusty
sudo: required
mono: none
dotnet: 1.0.0-preview2-1-003177
branches:
only:
- master
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main'
key_url: 'https://apt-mo.trafficmanager.net/keys/microsoft.asc'
packages:
- dotnet-dev-1.0.1
before_script:
dotnet restore
script:
dotnet build
# env:
# global:
# - CONFIGURATION=Release
# dist: trusty
# sudo: required
# matrix:
# include:
# - os: linux
# dist: trusty # Ubuntu 14.04
# dotnet: 1.0.0-preview2-1-003177
# mono: none
# env: DOTNETCORE=1
# sudo: required
# #- os: osx
# #osx_image: xcode7.3 # macOS 10.11
# #dotnet: 1.0.0-preview2-1-003177
# #mono: none
# #env: DOTNETCORE=1
# script:
# xbuild ExampleConsole/ExampleConsole.csproj
#./dev-bin/build.sh
# - dotnet build -f netcoreapp1.1 -c Release ExampleConsole/ExampleConsole.csproj
notifications:
email:
on_failure: change
on_success: change