https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b6f2c9fc5c608749d0404c9e20a4fa7abc704e98
commit b6f2c9fc5c608749d0404c9e20a4fa7abc704e98 Author: Amine Khaldi <[email protected]> AuthorDate: Sun Apr 1 13:07:09 2018 +0100 Commit: Amine Khaldi <[email protected]> CommitDate: Sun Apr 1 13:07:09 2018 +0100 [APPVEYOR] Clean up our build logs so we can focus on warnings and errors. --- appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 443508b7f8..caf0f951ac 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,8 +27,10 @@ build_script: - md c:\ros_build - cd c:\ros_build - call %APPVEYOR_BUILD_FOLDER%\configure.cmd %clang_configure_option% -DENABLE_ROSTESTS=1 - - ninja -k0 - - ninja bootcd + - ps: >- + & ninja -k0 2>&1 | select-string -pattern "\[\d+\/\d+\] " -NotMatch | %{$_.Line} + - ps: >- + & ninja bootcd 2>&1 | select-string -pattern "\[\d+\/\d+\] " -NotMatch | %{$_.Line} test: off deploy: off
