[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 6/7] gitlab: custom-runners: preserve more artifacts for debugging
|
From: |
Paolo Bonzini |
|
Subject: |
[PULL 6/7] gitlab: custom-runners: preserve more artifacts for debugging |
|
Date: |
Sat, 20 May 2023 21:06:31 +0200 |
Since custom runners are not generally available, make it possible to
debug the differences between a successful and a failing build by
comparing the logs and the build.ninja rules.
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
.gitlab-ci.d/custom-runners.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.gitlab-ci.d/custom-runners.yml b/.gitlab-ci.d/custom-runners.yml
index 34a1e6f32735..8e5b9500f401 100644
--- a/.gitlab-ci.d/custom-runners.yml
+++ b/.gitlab-ci.d/custom-runners.yml
@@ -20,8 +20,10 @@ variables:
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
expire_in: 7 days
+ when: always
paths:
- - build/meson-logs/testlog.txt
+ - build/build.ninja
+ - build/meson-logs
reports:
junit: build/meson-logs/testlog.junit.xml
--
2.40.1
- [PULL 0/7] Python fixes and related patches, Paolo Bonzini, 2023/05/20
- [PULL 1/7] remove remaining traces of meson submodule, Paolo Bonzini, 2023/05/20
- [PULL 2/7] mkvenv: replace distlib.database with importlib.metadata/pkg_resources, Paolo Bonzini, 2023/05/20
- [PULL 3/7] build: rebuild build.ninja using "meson setup --reconfigure", Paolo Bonzini, 2023/05/20
- [PULL 4/7] configure: fix backwards-compatibility for meson sphinx_build option, Paolo Bonzini, 2023/05/20
- [PULL 5/7] mkvenv: pass first missing package to diagnose(), Paolo Bonzini, 2023/05/20
- [PULL 6/7] gitlab: custom-runners: preserve more artifacts for debugging,
Paolo Bonzini <=
- [PULL 7/7] scripts: make sure scripts are invoked via $(PYTHON), Paolo Bonzini, 2023/05/20
- Re: [PULL 0/7] Python fixes and related patches, Richard Henderson, 2023/05/22