From b0171cc09afbc4c97903eb26adbae074cde248de Mon Sep 17 00:00:00 2001 From: "Christoph Bergmeister [MVP]" Date: Sat, 9 Feb 2019 22:58:43 +0000 Subject: [PATCH] Speed up travis builds by skipping the .net core initialisation --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index a8284f840f..80ae6b4308 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,10 @@ language: cpp git: depth: 1000 +env: + # Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds + DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 + os: - linux - osx