1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 23:10:45 +00:00
falk-werner_webfuse-provider/.travis.yml
2020-06-15 22:55:46 +02:00

35 lines
589 B
YAML

dist: bionic
language: c
compiler:
- gcc
addons:
apt:
update: true
packages:
- build-essential
- cmake
- pkgconf
- wget
- ca-certificates
- python3
- python3-pip
- python3-setuptools
- python3-wheel
- ninja-build
- lcov
before_install:
- sudo pip3 install --system meson
before_script:
- meson -Db_coverage=true build
script:
- cd build
- meson test
after_success:
- bash <(curl -s https://codecov.io/bash)