From 624a61af2e4deba5c8965c739e0987b9513df24f Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sun, 15 Oct 2017 11:45:05 +0200 Subject: [PATCH] Address weird AppVeyor behaviour --- appveyor.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index a37dcad74..aa4f8c38e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,7 +19,9 @@ matrix: install: - ps: >- Set-StrictMode -Version Latest + $ErrorActionPreference = 'Stop' + $ProgressPreference = 'SilentlyContinue' dotnet --info @@ -35,7 +37,9 @@ install: before_build: - ps: >- Set-StrictMode -Version Latest + $ErrorActionPreference = 'Stop' + $ProgressPreference = 'SilentlyContinue' dotnet --info @@ -44,21 +48,27 @@ before_build: build_script: - ps: >- Set-StrictMode -Version Latest + $ErrorActionPreference = 'Stop' + $ProgressPreference = 'SilentlyContinue' dotnet build -c "$env:CONFIGURATION" -o 'out\source' --no-restore /nologo test_script: - ps: >- Set-StrictMode -Version Latest + $ErrorActionPreference = 'Stop' + $ProgressPreference = 'SilentlyContinue' dotnet test ArchiSteamFarm.Tests -c "$env:CONFIGURATION" -o 'out\source' --no-build --no-restore after_test: - ps: >- Set-StrictMode -Version Latest + $ErrorActionPreference = 'Stop' + $ProgressPreference = 'SilentlyContinue' $PublishBlock = {