From d7431c9654612fef0bde37518fa7bb090f137478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Mon, 25 Jan 2021 19:08:07 +0100 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 eb13d84..6c1ca41 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -90,7 +90,7 @@ test_dev: stage: test script: - meson _build -Db_coverage=true - - 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: @@ -106,7 +106,7 @@ test_dev_with_sanitizer: stage: test script: - meson _build -Db_sanitize=address - - meson test -C _build --verbose --no-stdsplit --timeout-multiplier 5 + - meson test -C _build --print-errorlogs --no-stdsplit --timeout-multiplier 5 artifacts: name: meson-logs when: on_failure