mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
25 lines
331 B
YAML
25 lines
331 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
update: true
|
|
packages:
|
|
- valgrind
|
|
|
|
before_install:
|
|
- ./install_deps.sh
|
|
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
|
|
|
|
|
|
before_script:
|
|
- mkdir .build
|
|
- cd .build
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
script:
|
|
- make
|
|
- valgrind ./alltests
|