diff options
author | Aki <please@ignore.pl> | 2023-02-27 10:07:57 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-02-27 10:07:57 +0100 |
commit | 60798d7c1fdf7cfca137f88a04477e4a6f69c6f8 (patch) | |
tree | 7df785cc44f3d9eee657481fba84920379176f82 | |
parent | 8f5aaf56ace8cbf1dd927561470653a2800f82af (diff) | |
download | kurator-60798d7c1fdf7cfca137f88a04477e4a6f69c6f8.zip kurator-60798d7c1fdf7cfca137f88a04477e4a6f69c6f8.tar.gz kurator-60798d7c1fdf7cfca137f88a04477e4a6f69c6f8.tar.bz2 |
The entire build directory is an artifact
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f2c631a..52a1189 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ build-linux: - cmake --build build-linux/ artifacts: paths: - - build-linux/kurator/kurator + - build-linux/ build-windows: stage: build @@ -16,13 +16,13 @@ build-windows: - cmake --build build-windows/ artifacts: paths: - - build-windows/kurator/kurator.exe + - build-windows/ test-linux: stage: test needs: ["build-linux"] script: - - cd build-linux/ && ctest + - ctest --test-dir build-windows/ test-windows: stage: test @@ -30,4 +30,4 @@ test-windows: before_script: - x86_64-w64-mingw32-wine hostname script: - - cd build-windows/ && ctest + - ctest --test-dir build-windows/ |