blob: 709f835f091c3601ae07fbbbe2b4231db812ef68 (
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
|