blob: f31c37311fbab9f94a802a48b1d3d1968f189dd9 (
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
|