diff options
| author | Daniel P. Berrangé <berrange@redhat.com> | 2025-09-08 20:08:58 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-09-09 11:29:41 +0200 |
| commit | 8e22db01a1f45b108f55860514f8896952af550e (patch) | |
| tree | 0ef5ba1857a83cf6f644098d03e5b565f569ecf5 | |
| parent | 8cdcabe129cdd3270fd5c21708833464396fbf9b (diff) | |
| download | focaccia-qemu-8e22db01a1f45b108f55860514f8896952af550e.tar.gz focaccia-qemu-8e22db01a1f45b108f55860514f8896952af550e.zip | |
gitlab: replace avocado results files with meson results files
The 'results.xml' file and 'test-results' directory were both outputs of the avovcado test runner. Since we're now using meson with the new functional test framework, we must reference meson results files as the CI artifacts. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-ID: <20250908190901.3571859-2-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '')
| -rw-r--r-- | .gitlab-ci.d/buildtest-template.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml index 038c3c9540..4672298214 100644 --- a/.gitlab-ci.d/buildtest-template.yml +++ b/.gitlab-ci.d/buildtest-template.yml @@ -104,11 +104,10 @@ when: always expire_in: 7 days paths: - - build/tests/results/latest/results.xml - - build/tests/results/latest/test-results + - build/meson-logs/testlog.txt - build/tests/functional/*/*/*.log reports: - junit: build/tests/results/latest/results.xml + junit: build/meson-logs/testlog.junit.xml before_script: - export QEMU_TEST_ALLOW_UNTRUSTED_CODE=1 - export QEMU_TEST_CACHE_DIR=${CI_PROJECT_DIR}/functional-cache |