From a825eff70dd9654d2ded6045567a4f5ddd176ac7 Mon Sep 17 00:00:00 2001 From: Adam Chester Date: Sun, 5 Mar 2017 11:52:32 +1000 Subject: [PATCH] Only build perf tests on OSX/Linux (not run) --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f75d3c686..f48816514 100755 --- a/build.sh +++ b/build.sh @@ -18,5 +18,6 @@ for path in test/*.Tests/*.csproj; do done for path in test/*.PerformanceTests/*.PerformanceTests.csproj; do - dotnet test -f netcoreapp1.1 -c Release ${path} + dotnet build -f netcoreapp1.1 -c Release ${path} + # dotnet test -f netcoreapp1.1 -c Release ${path} done