diff options
author | Aki <please@ignore.pl> | 2023-02-27 01:42:09 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-02-27 01:42:09 +0100 |
commit | 6b25ce0013aec65eaca72968b4c43a84f9393ac7 (patch) | |
tree | 500e2b724e3dd0e89c9f70e662563a8480d0d216 | |
parent | 5bcbde30cb6bece4e70e1711e953c4b051699f08 (diff) | |
download | kurator-6b25ce0013aec65eaca72968b4c43a84f9393ac7.zip kurator-6b25ce0013aec65eaca72968b4c43a84f9393ac7.tar.gz kurator-6b25ce0013aec65eaca72968b4c43a84f9393ac7.tar.bz2 |
Added needs declarations for test jobs
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0afe9ce..fbbdcf5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,10 +20,12 @@ build-windows: test-linux: stage: test + needs: ["build-linux"] script: - cd build-linux/ && ctest test-windows: stage: test + needs: ["build-windows"] script: - cd build-windows/ && ctest |