blob: acf78aaa872bd302ce3bbb7547cce68f5ae4030a (
plain)
1
2
3
4
5
6
7
8
|
archlinux:
image: "archlinux:latest"
before_script:
- pacman -Sy base-devel cmake wget --noconfirm --needed
script:
- mkdir build && cd build && cmake ../ && make && cd ../
- ./tests/stockfish.sh && ./tests/berserk.sh
- cd build && ctest
|