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
09300ff8ca
commit
c262feace2
14
.travis.yml
14
.travis.yml
|
|
@ -1,5 +1,17 @@
|
||||||
language: csharp
|
language: csharp
|
||||||
sudo: false
|
sudo: required
|
||||||
|
dist: trusty
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- gettext
|
||||||
|
- libcurl4-openssl-dev
|
||||||
|
- libicu-dev
|
||||||
|
- libssl-dev
|
||||||
|
- libunwind8
|
||||||
|
- zlib1g
|
||||||
|
env:
|
||||||
|
- KOREBUILD_DNU_RESTORE_CORECLR=true
|
||||||
install:
|
install:
|
||||||
- curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | tar zxfv - -C /tmp && cd /tmp/libuv-1.4.2/
|
- curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | tar zxfv - -C /tmp && cd /tmp/libuv-1.4.2/
|
||||||
- sh autogen.sh
|
- sh autogen.sh
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue