From 4e2ecf8a63b9fc78175d1ef62bf2b1918b8b3986 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Sun, 4 Sep 2016 19:15:00 -0700 Subject: [PATCH] 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 --- .travis.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3b4056f4a2..3439636a23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,16 +11,9 @@ addons: - libunwind8 - zlib1g env: - - KOREBUILD_DNU_RESTORE_CORECLR=true -install: - - 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 - - ./configure --prefix=$HOME/libuvinstall - - make - - make install - - export LD_LIBRARY_PATH="$HOME/libuvinstall/lib" - - cd $OLDPWD - - sudo pip install autobahntestsuite "six>=1.9.0" + global: + - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: - 4.0.5 python: @@ -37,5 +30,7 @@ branches: - /^(.*\/)?ci-.*$/ 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 +install: + - sudo pip install autobahntestsuite "six>=1.9.0" script: - ./build.sh --quiet verify