Move Travis to supported Linux distribution
- use Ubuntu 14.04 (Trusty) - Travis support for Trusty is in Beta and currently requires `sudo` - run `dnu restore` with DNX Core since aspnet/External#49 is not fixed in Mono versions we can use - add required dependencies for DNX Core to `.travis.yml` - addresses part of aspnet/Universe#290
This commit is contained in:
parent
8078f691f0
commit
d6542506a8
19
.travis.yml
19
.travis.yml
|
|
@ -1,11 +1,24 @@
|
||||||
language: csharp
|
language: csharp
|
||||||
sudo: false
|
sudo: required
|
||||||
|
dist: trusty
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- gettext
|
||||||
|
- libcurl4-openssl-dev
|
||||||
|
- libicu-dev
|
||||||
|
- libssl-dev
|
||||||
|
- libunwind8
|
||||||
|
- zlib1e
|
||||||
|
before_install:
|
||||||
|
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; fi
|
||||||
|
- if test "$TRAVIS_OS_NAME" == "osx"; then brew install icu4c; fi
|
||||||
env:
|
env:
|
||||||
- MONO_THREADS_PER_CPU=2000
|
- KOREBUILD_DNU_RESTORE_CORECLR=true MONO_THREADS_PER_CPU=2000
|
||||||
mono:
|
mono:
|
||||||
- 4.0.5
|
- 4.0.5
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
script:
|
script:
|
||||||
- ./build.sh --quiet verify
|
- ./build.sh --quiet verify
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue