ci/win: redirect stderr to fix mingw build

This commit is contained in:
Jan Edmund Lazo 2018-04-13 13:42:02 -04:00
parent ad30907814
commit 51b9d85bb4
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ bin\nvim --version ; exitIfFailed
$failed = $false
# Temporarily turn off tracing to reduce log file output
Set-PSDebug -Off
cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs |
cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 |
foreach { $failed = $failed -or
$_ -match 'Running functional tests failed with error'; $_ }
Set-PSDebug -Trace 1