From 1533e973c2f35d8fc12134057779a61ab1446d1c Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 27 Feb 2023 10:16:10 +0100 Subject: Added junit tests report --- .gitlab-ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 52a1189..10c839e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,10 @@ test-linux: stage: test needs: ["build-linux"] script: - - ctest --test-dir build-windows/ + - ctest --test-dir build-linux/ --output-junit junit.xml + artifacts: + reports: + junit: junit.xml test-windows: stage: test @@ -30,4 +33,7 @@ test-windows: before_script: - x86_64-w64-mingw32-wine hostname script: - - ctest --test-dir build-windows/ + - ctest --test-dir build-windows/ --output-junit junit.xml + artifacts: + reports: + junit: junit.xml -- cgit v1.1