From 84eca87da283687460edc93ea9344b736bd77581 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Tue, 14 Nov 2017 01:47:33 -0800 Subject: [PATCH] [CSharp] Switch Travis / macOS to .NET Core 1.1.4. Switch to .NET Core SDK 1.1.4 for the Travis macOS tests. This is the LTS release at the moment. Issue #2078 is starting to look like a crash (SIGILL) inside the dotnet runtime, so this upgrade may help with that. --- .travis/before-install-osx-dotnet.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/before-install-osx-dotnet.sh b/.travis/before-install-osx-dotnet.sh index 300747d3e..a4b187709 100755 --- a/.travis/before-install-osx-dotnet.sh +++ b/.travis/before-install-osx-dotnet.sh @@ -3,9 +3,9 @@ set -euo pipefail cache_dir="$HOME/Library/Caches/Antlr4" -dotnet_url='https://download.microsoft.com/download/B/9/F/B9F1AF57-C14A-4670-9973-CDF47209B5BF/dotnet-dev-osx-x64.1.0.4.pkg' +dotnet_url='https://download.microsoft.com/download/F/4/F/F4FCB6EC-5F05-4DF8-822C-FF013DF1B17F/dotnet-dev-osx-x64.1.1.4.pkg' dotnet_file=$(basename "$dotnet_url") -dotnet_shasum='63b5d99028cd8b2454736076106c96ba7d05f0fc' +dotnet_shasum='dc46d93716db8bea8cc3c668088cc9e39384b5a4' thisdir=$(dirname "$0")