From 2d9c00b504e4e35c08ef496b201aa605fd3e39e9 Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Tue, 25 Dec 2018 10:44:16 +0000 Subject: [PATCH] Make Powershell stop on errors We had failing regression tests, but this went unnoticed because the goto-cl regression tests were successful (which were the last common run in the cmdlet). --- buildspec-windows.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildspec-windows.yml b/buildspec-windows.yml index 47b011814a8..60e93b5eb48 100644 --- a/buildspec-windows.yml +++ b/buildspec-windows.yml @@ -64,6 +64,9 @@ phases: - | $env:Path = "C:\tools\cygwin\bin;$env:Path" cmd /c 'call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 && bash -c "make -C regression test BUILD_ENV=MSVC" ' + + - | + $env:Path = "C:\tools\cygwin\bin;$env:Path" cmd /c 'call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 && bash -c "make -C regression/goto-cl test BUILD_ENV=MSVC" ' - |