pgnp/.gitlab-ci.yml
2023-01-19 16:05:19 +01:00

7 lines
251 B
YAML

archlinux:
image: "archlinux:base-devel"
before_script:
- pacman -Sy cmake git --noconfirm --needed
script:
- git submodule init && git submodule update
- mkdir build && cd build && cmake -DCOMPILE_TESTS:BOOL=ON ../ && make && ctest