Increase .travis.yml consistency between repos
- aspnet/Universe#349 - minimize `dotnet` setup time; no need for caching - `KOREBUILD_DNU_RESTORE_CORECLR` env variable isn't used anymore - no need for libuv v1.4.2 w/ current Kestrel packages
This commit is contained in:
parent
b996ee39a4
commit
4e2ecf8a63
15
.travis.yml
15
.travis.yml
|
|
@ -11,16 +11,9 @@ addons:
|
||||||
- libunwind8
|
- libunwind8
|
||||||
- zlib1g
|
- zlib1g
|
||||||
env:
|
env:
|
||||||
- KOREBUILD_DNU_RESTORE_CORECLR=true
|
global:
|
||||||
install:
|
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
- curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | tar zxfv - -C /tmp && cd /tmp/libuv-1.4.2/
|
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
||||||
- sh autogen.sh
|
|
||||||
- ./configure --prefix=$HOME/libuvinstall
|
|
||||||
- make
|
|
||||||
- make install
|
|
||||||
- export LD_LIBRARY_PATH="$HOME/libuvinstall/lib"
|
|
||||||
- cd $OLDPWD
|
|
||||||
- sudo pip install autobahntestsuite "six>=1.9.0"
|
|
||||||
mono:
|
mono:
|
||||||
- 4.0.5
|
- 4.0.5
|
||||||
python:
|
python:
|
||||||
|
|
@ -37,5 +30,7 @@ branches:
|
||||||
- /^(.*\/)?ci-.*$/
|
- /^(.*\/)?ci-.*$/
|
||||||
before_install:
|
before_install:
|
||||||
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl python; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
|
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl python; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
|
||||||
|
install:
|
||||||
|
- sudo pip install autobahntestsuite "six>=1.9.0"
|
||||||
script:
|
script:
|
||||||
- ./build.sh --quiet verify
|
- ./build.sh --quiet verify
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue