-
Notifications
You must be signed in to change notification settings - Fork 52
/
.travis.yml
47 lines (40 loc) · 981 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
language: csharp
matrix:
include:
- os: linux
dist: trusty
sudo: required
mono: 5.16.0
dotnet: 2.0
env: build_config=Release
env: netmoniker=net461
- os: linux
dist: trusty
sudo: required
mono: 5.16.0
dotnet: 2.0
env: build_config=Debug
env: netmoniker=net461
- os: osx
osx_image: xcode9.4
sudo: required
mono: 5.16.0
dotnet: 2.0
env: build_config=Release
env: netmoniker=net461
- os: osx
osx_image: xcode9.4
sudo: required
mono: 5.16.0
dotnet: 2.0
env: build_config=Debug
env: netmoniker=net461
#before_install:
before_script:
- chmod +x build.sh
- ./build.sh --target=Restore
script:
- ./build.sh --target=Build
after_script:
- travis_wait 60 ./build.sh --target=AllTests
- if [ "$TRAVIS_OS_NAME" != "linux" && "$TRAVIS_OS_NAME" != "osx" ]; then travis_wait 60 ./build.sh --target=Upload-Coverage; fi