forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
43 lines (33 loc) · 934 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
language: csharp
os:
- linux
- osx
osx_image: xcode9
mono:
- weekly
- latest
- 5.8.0
dotnet: 2.1.4
sudo: false
install:
script:
- ./fcs/build.sh Build
# Woes with doing more build/test on linux
#
# This fails because NUnit gives an exception (!!!!)
# - ./fcs/build.sh Test.NetFx
#
# System.IO.FileNotFoundException: Could not load file or assembly 'nunit.engine.api, Version=3.0.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb' or one of its dependencies.
#
# This fails because Nuget packaging doesn't like backslashes in the package file, but Windows does
# - ./fcs/build.sh NuGet
# Fails on Travis OSX too often because there are network outages on that configuration getting the Mono MDK
# Fails on Travis Linux with Mono latest do to a trust issue with certs on package restore?
matrix:
exclude:
- os: osx
mono: 4.4.2
- os: osx
mono: 4.8.0
- os: linux
mono: latest