ci: add a valgrind build

This commit is contained in:
Daniel Eklöf 2019-05-09 21:02:45 +02:00
parent 6c695c0281
commit 426ab76f29

View file

@ -29,6 +29,16 @@ debug:
- ninja coverage-text
- tail meson-logs/coverage.txt
valgrind:
stage: build
script:
- apk add valgrind
- mkdir -p bld/debug
- cd bld/debug
- meson --buildtype=debug ../..
- ninja -k0
- meson test --wrapper "valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=3"
release:
stage: build
script: