1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 01:30:44 +00:00
falk-werner_webfuse-provider/.travis.yml

35 lines
589 B
YAML
Raw Normal View History

2020-06-08 18:56:19 +00:00
dist: bionic
2020-06-15 20:28:42 +00:00
language: c
compiler:
- gcc
2019-02-10 08:52:13 +00:00
addons:
2020-06-15 20:28:42 +00:00
apt:
update: true
packages:
- build-essential
- cmake
- pkgconf
- wget
- ca-certificates
- python3
- python3-pip
- python3-setuptools
- python3-wheel
- ninja-build
2020-06-15 20:55:46 +00:00
- lcov
2020-06-15 20:28:42 +00:00
before_install:
- sudo pip3 install --system meson
before_script:
2020-06-15 20:55:46 +00:00
- meson -Db_coverage=true build
2020-06-15 20:28:42 +00:00
script:
2020-06-15 20:28:42 +00:00
- cd build
2020-06-15 20:55:46 +00:00
- meson test
after_success:
- bash <(curl -s https://codecov.io/bash)