mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
18 lines
399 B
YAML
18 lines
399 B
YAML
sudo: false
|
|
language: c
|
|
compiler:
|
|
- gcc
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libssl-dev
|
|
- libevent-dev
|
|
- libexpat-dev
|
|
- clang
|
|
- splint
|
|
script:
|
|
- ./configure --enable-debug --disable-flto
|
|
- make
|
|
- make lint
|
|
- make test
|
|
- (cd testdata; ../testcode/mini_tdir.sh exe clang-analysis.tdir ; if grep -e "warning:" -e "error:" result.clang-analysis ; then exit 1; else exit 0; fi)
|