[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 05/12] gitlab: reduce default verbosity of cirrus run
From: |
Alex Bennée |
Subject: |
[PATCH 05/12] gitlab: reduce default verbosity of cirrus run |
Date: |
Wed, 15 Feb 2023 19:25:23 +0000 |
We also truncate the echoing of the test log if we fail. Ideally we
would want the build aretefact to be available to gitlab but so far
how to do this eludes me.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Cc: Daniel P. Berrangé <berrange@redhat.com>
---
.gitlab-ci.d/cirrus/build.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.gitlab-ci.d/cirrus/build.yml b/.gitlab-ci.d/cirrus/build.yml
index 7ef6af8d33..6563ff3c7a 100644
--- a/.gitlab-ci.d/cirrus/build.yml
+++ b/.gitlab-ci.d/cirrus/build.yml
@@ -32,6 +32,6 @@ build_task:
- $MAKE -j$(sysctl -n hw.ncpu)
- for TARGET in $TEST_TARGETS ;
do
- $MAKE -j$(sysctl -n hw.ncpu) $TARGET V=1
- || { cat meson-logs/testlog.txt; exit 1; } ;
+ $MAKE -j$(sysctl -n hw.ncpu) $TARGET
+ || { tail -n 200 meson-logs/testlog.txt; exit 1; } ;
done
--
2.39.1
- [PATCH 00/12] testing/next: docker, avocado, unit,, Alex Bennée, 2023/02/15
- [PATCH 01/12] gitlab: tweak and filter ninja output to reduce build noise, Alex Bennée, 2023/02/15
- [PATCH 02/12] tests/avocado: retire the Aarch64 TCG tests from boot_linux.py, Alex Bennée, 2023/02/15
- [PATCH 04/12] tests: be a bit more strict cleaning up fifos, Alex Bennée, 2023/02/15
- [PATCH 06/12] gitlab: extend custom runners with base_job_template, Alex Bennée, 2023/02/15
- [PATCH 05/12] gitlab: reduce default verbosity of cirrus run,
Alex Bennée <=
- [PATCH 03/12] tests: add socat dependency for tests, Alex Bennée, 2023/02/15
- [PATCH 10/12] tests/docker: Use binaries for debian-tricore-cross, Alex Bennée, 2023/02/15
- [PATCH 12/12] tests: ensure we export job results for some cross builds, Alex Bennée, 2023/02/15
- [PATCH 08/12] tests: skip the nios2 replay_kernel test, Alex Bennée, 2023/02/15