blob: 748ac57ae1c6a6765fc28584240c8368aea8cf4c (
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 && cd tests && ./pgnp_tests
|