[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 02/36] gitlab: ensure coverage job also publishes meson log
From: |
Alex Bennée |
Subject: |
[PATCH v3 02/36] gitlab: ensure coverage job also publishes meson log |
Date: |
Tue, 27 Jun 2023 17:06:26 +0100 |
From: Daniel P. Berrangé <berrange@redhat.com>
The coverage job wants to publish a coverage report on success, but the
tests might fail and in that case we need the meson logs for debugging.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230623122100.1640995-3-alex.bennee@linaro.org>
Message-Id: <20230503145535.91325-3-berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.gitlab-ci.d/buildtest.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index 24bba061cd..a8fd9a0c1f 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -462,9 +462,12 @@ gcov:
coverage: /^\s*lines:\s*\d+.\d+\%/
artifacts:
name: ${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA}
- when: on_success
+ when: always
expire_in: 2 days
+ paths:
+ - build/meson-logs/testlog.txt
reports:
+ junit: build/meson-logs/testlog.junit.xml
coverage_report:
coverage_format: cobertura
path: build/coverage.xml
--
2.39.2
- [PATCH v3 00/36] maintainer omnibus: testing, fuzz, plugins, documentation (pre-PR), Alex Bennée, 2023/06/27
- [PATCH v3 02/36] gitlab: ensure coverage job also publishes meson log,
Alex Bennée <=
- [PATCH v3 01/36] gitlab: explicit set artifacts publishing criteria, Alex Bennée, 2023/06/27
- [PATCH v3 04/36] docs/devel: remind developers to run CI container pipeline when updating images, Alex Bennée, 2023/06/27
- [PATCH v3 03/36] gitlab: reduce testing scope of check-gcov, Alex Bennée, 2023/06/27
- [PATCH v3 10/36] Makefile: add lcitool-refresh to UNCHECKED_GOALS, Alex Bennée, 2023/06/27
- [PATCH v3 06/36] qemu-keymap: properly check return from xkb_keymap_mod_get_index, Alex Bennée, 2023/06/27
- [PATCH v3 13/36] tests/lcitool: add an explicit gcc-native package, Alex Bennée, 2023/06/27
- [PATCH v3 07/36] scripts/oss-fuzz: add a suppression for keymap, Alex Bennée, 2023/06/27
- [PATCH v3 11/36] tests/lcitool: update to latest version, Alex Bennée, 2023/06/27
- [PATCH v3 09/36] tests/docker: add test-fuzz, Alex Bennée, 2023/06/27
- [PATCH v3 05/36] tests/tcg: add mechanism to handle plugin arguments, Alex Bennée, 2023/06/27