-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
126 lines (121 loc) · 2.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
language: csharp
matrix:
include:
- os: osx
dotnet: 2.0.3
mono: none
env: DOTNETCORE=1
- os: osx
dotnet: 1.1.5
mono: none
env: DOTNETCORE=1
- os: linux
dist: xenial
sudo: false
dotnet: 2.1
mono: none
env: DOTNETCORE=1
- os: linux
dist: xenial
sudo: false
dotnet: 2.0.3
mono: none
env: DOTNETCORE=1
- os: linux
dist: xenial
sudo: required
dotnet: 2.0.3
mono: none
env: DOTNETCORE=1
- os: linux
dist: xenial
dotnet: 1.1.5
mono: none
env: DOTNETCORE=1
- os: linux
mono: latest
dist: precise
sudo: false
- os: linux
mono: nightly
dist: xenial
- os: linux
mono: latest
dist: xenial
sudo: false
- os: linux
mono: alpha
dist: xenial
sudo: false
- os: linux
mono: beta
dist: xenial
sudo: false
- os: linux
mono: weekly
dist: xenial
sudo: false
- os: linux
mono: 5.2.0
sudo: false
- os: linux
mono: 4.6.2
sudo: false
- os: linux
mono: 4.4.1
sudo: false
- os: linux
mono: 4.4.0
sudo: false
- os: linux
mono: 4.2.4
sudo: false
- os: linux
mono: 4.0.5
sudo: false
- os: linux
mono: 3.12.0
sudo: false
- os: linux
mono: 3.10.0
sudo: false
- os: linux
mono: 3.8.0
sudo: false
- os: osx
mono: alpha
- os: osx
mono: beta
- os: osx
mono: weekly
- os: osx
mono: latest
- os: osx
mono: 5.2.0
- os: osx
mono: 4.4.1
- os: osx
mono: 4.4.0
- os: osx
mono: 4.2.4
- os: osx
mono: 4.0.5
- os: osx
osx_image: xcode6.4
mono: 3.12.0
- os: osx
osx_image: xcode6.4
mono: 3.10.0
notifications:
email:
on_success: change
on_failure: always
before_install:
- cat $HOME/build.sh
- echo $STANDARD_CI_SOURCE_REVISION_ID $STANDARD_CI_REPOSITORY_URL $STANDARD_CI_REPOSITORY_TYPE
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then ulimit -n 1024; fi
script:
- if [ -z $(which msbuild) ]; then export MSBUILD=xbuild; else export MSBUILD=msbuild; fi
- if [ -n "${DOTNETCORE}" ]; then mkdir bla && cd bla && dotnet new console && time dotnet restore && dotnet run; fi
- if [ -z "${DOTNETCORE}" ]; then $MSBUILD /p:Configuration=Release travis-mono-test.sln; fi
- if [ -z "${DOTNETCORE}" ]; then mono travis-mono-test/bin/Release/travis-mono-test.exe; fi