Increase .travis.yml consistency between repos
- aspnet/Universe#349 - minimize `dotnet` setup time; no need for caching - build with `--quiet`
This commit is contained in:
parent
cbbec15d37
commit
5b323e5ba1
|
|
@ -10,6 +10,10 @@ addons:
|
||||||
- libssl-dev
|
- libssl-dev
|
||||||
- libunwind8
|
- libunwind8
|
||||||
- zlib1g
|
- zlib1g
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
|
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
||||||
mono:
|
mono:
|
||||||
- 4.0.5
|
- 4.0.5
|
||||||
os:
|
os:
|
||||||
|
|
@ -25,4 +29,4 @@ branches:
|
||||||
before_install:
|
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
|
- 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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue