1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00
conky/.gitlab-ci.yml
2019-02-22 22:03:05 -05:00

28 lines
336 B
YAML

stages:
- build
- test
- lint
image: brndnmtthws/conky-builder:latest
variables:
CC: clang-7
CXX: clang++-7
build:
script:
- mkdir build
- cd build
- cmake ..
- make -j4
test:
script:
- cd build
- make test
lint:
script:
- cd build
- cmake -DCHECK_CODE_QUALITY=ON ..
- make check