diff options
author | Aki <please@ignore.pl> | 2023-02-27 10:16:10 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-02-27 10:16:10 +0100 |
commit | 1533e973c2f35d8fc12134057779a61ab1446d1c (patch) | |
tree | c6c9378f42915feb17025e0c2aa3d6678af969d3 | |
parent | 60798d7c1fdf7cfca137f88a04477e4a6f69c6f8 (diff) | |
download | kurator-1533e973c2f35d8fc12134057779a61ab1446d1c.zip kurator-1533e973c2f35d8fc12134057779a61ab1446d1c.tar.gz kurator-1533e973c2f35d8fc12134057779a61ab1446d1c.tar.bz2 |
Added junit tests report
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files 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 |