ci: Use JUnit reports from Meson

Meson has been generating Junit XML files of its test results since
0.55, so we can use that to show the test results in the GitLab UI.
This commit is contained in:
Niels De Graef 2023-08-23 23:54:05 +02:00
parent 28f48e0208
commit bdc9986d1c

View file

@ -250,6 +250,10 @@ test:
ninja dist -C _build
fi
artifacts:
reports:
junit: "_build/meson-logs/testlog.junit.xml"
except:
variables:
- $CI_PIPELINE_SOURCE == "schedule"