Increase .travis.yml consistency between repos

- aspnet/Universe#349
- minimize `dotnet` setup time; no need for caching
- build with `--quiet`
- `KOREBUILD_TEST_DNXCORE` env variable isn't used anymore
- no need for libuv v1.4.2 w/ current Kestrel packages
- no need for icu4c w/ current `dotnet` builds
This commit is contained in:
Doug Bunting 2016-09-04 16:05:46 -07:00
parent 4158be273f
commit 3ad40bacdd
1 changed files with 7 additions and 12 deletions

View File

@ -10,18 +10,11 @@ addons:
- libssl-dev - libssl-dev
- libunwind8 - libunwind8
- zlib1g - zlib1g
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install icu4c; brew install openssl; 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
env: env:
- KOREBUILD_TEST_DNXCORE=true NO_PARALLEL_TEST_PROJECTS=E2ETests 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 - NO_PARALLEL_TEST_PROJECTS=E2ETests
- ./configure --prefix=$HOME/libuvinstall
- make
- make install
- export LD_LIBRARY_PATH="$HOME/libuvinstall/lib"
- cd $OLDPWD
mono: mono:
- 4.0.5 - 4.0.5
os: os:
@ -34,5 +27,7 @@ branches:
- release - release
- dev - dev
- /^(.*\/)?ci-.*$/ - /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; 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
script: script:
- ./build.sh verify - ./build.sh --quiet verify