From 9321791d0e4059cbc846b5fa5a53ebf58404e059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Thu, 1 Apr 2021 18:01:29 +0200 Subject: [PATCH] ci: Do not use verbose logging for tests, just rely on artifacts Only print errors if any --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e6f736c..1f109de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -63,7 +63,7 @@ test: script: - meson --werror -Ddrivers=all -Db_coverage=true . _build - ninja -C _build - - meson test -C _build --verbose --no-stdsplit --timeout-multiplier 3 + - meson test -C _build --print-errorlogs --no-stdsplit --timeout-multiplier 3 - ninja -C _build coverage - cat _build/meson-logs/coverage.txt artifacts: @@ -80,7 +80,7 @@ test_valgrind: script: - meson -Ddrivers=all . _build - ninja -C _build - - meson test -C _build --verbose --no-stdsplit --setup=valgrind + - meson test -C _build --print-errorlogs --no-stdsplit --setup=valgrind test_scan_build: stage: test