blob: 7add331c2edcc7573c9427a4b844fabda9774e16 (
plain)
1
2
3
4
5
6
|
archlinux:
image: "archlinux:latest"
before_script:
- pacman -Sy base-devel cmake --noconfirm --needed
script:
- mkdir build && cd build && cmake ../ && make && make test && cd tests && ./pgnp_tests
|