diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e41795f..cc47639 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ archlinux: image: "archlinux:base-devel" before_script: - - pacman -Sy cmake --noconfirm --needed + - pacman -Sy cmake git --noconfirm --needed script: - - mkdir build && cd build && cmake -DCOMPILE_TESTS:BOOL:ON ../ && make && ctest + - git submodule init && git submodule update + - mkdir build && cd build && cmake -DCOMPILE_TESTS:BOOL=ON ../ && make && ctest |
