diff options
Diffstat (limited to '.gitlab-ci.yml')
-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 |