diff options
author | Aki <please@ignore.pl> | 2023-02-27 00:59:09 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-02-27 01:19:53 +0100 |
commit | 5bcbde30cb6bece4e70e1711e953c4b051699f08 (patch) | |
tree | 00ae0cf7eab872542ba86d1d63877e8e75971a8a | |
parent | b732d94c2da40e1e422f694cdd66d6efb2e55f67 (diff) | |
download | kurator-5bcbde30cb6bece4e70e1711e953c4b051699f08.zip kurator-5bcbde30cb6bece4e70e1711e953c4b051699f08.tar.gz kurator-5bcbde30cb6bece4e70e1711e953c4b051699f08.tar.bz2 |
Added windows tests since wine is needed anyway with current config
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb3ec63..0afe9ce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,9 +16,14 @@ build-windows: - cmake --build build-windows/ artifacts: paths: - - build-windows/kurator/kurator + - build-windows/kurator/kurator.exe test-linux: stage: test script: - cd build-linux/ && ctest + +test-windows: + stage: test + script: + - cd build-windows/ && ctest |