blob: e41795f082de4d09365c6b0c935d90729db25851 (
plain)
1
2
3
4
5
6
|
archlinux:
image: "archlinux:base-devel"
before_script:
- pacman -Sy cmake --noconfirm --needed
script:
- mkdir build && cd build && cmake -DCOMPILE_TESTS:BOOL:ON ../ && make && ctest
|