1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00
conky/.gitlab-ci.yml
Brenden Matthews ed1d6eb8fd
Add gitlab CI.
2019-02-22 21:57:10 -05:00

24 lines
278 B
YAML

stages:
- build
- test
- lint
image: brndnmtthws/conky-builder:latest
build:
script:
- mkdir build
- cd build
- cmake ..
- make -j4
test:
script:
- cd build
- make test
lint:
- cd build
- cmake -DCHECK_CODE_QUALITY=ON ..
- make check