2017-08-08 06:32:30 +02:00
|
|
|
matrix:
|
2020-03-11 19:05:15 +01:00
|
|
|
|
2017-08-09 05:34:32 +02:00
|
|
|
include:
|
2020-03-11 19:05:15 +01:00
|
|
|
|
|
|
|
- language: cpp
|
|
|
|
os: linux
|
2017-08-08 06:32:30 +02:00
|
|
|
compiler: gcc
|
2020-02-23 16:45:07 +01:00
|
|
|
dist: bionic
|
2017-08-26 08:00:11 +02:00
|
|
|
sudo: required
|
2017-08-22 06:09:42 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- attr
|
|
|
|
- fuse
|
|
|
|
- libfuse-dev
|
|
|
|
- gettext
|
2020-02-23 16:45:07 +01:00
|
|
|
- cmake
|
2020-03-11 19:05:15 +01:00
|
|
|
before_script:
|
|
|
|
- sudo modprobe fuse
|
|
|
|
script:
|
|
|
|
- ./build.sh
|
2020-02-23 16:45:07 +01:00
|
|
|
env:
|
|
|
|
- SUDO_TESTS=true
|
|
|
|
|
2020-03-11 19:05:15 +01:00
|
|
|
- language: cpp
|
|
|
|
os: linux
|
2020-02-23 16:45:07 +01:00
|
|
|
compiler: gcc
|
|
|
|
dist: xenial
|
|
|
|
sudo: required
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- attr
|
|
|
|
- fuse
|
|
|
|
- libfuse-dev
|
|
|
|
- gettext
|
|
|
|
- cmake
|
2020-03-11 19:05:15 +01:00
|
|
|
before_script:
|
|
|
|
- sudo modprobe fuse
|
|
|
|
script:
|
|
|
|
- ./build.sh
|
2017-08-22 06:09:42 +02:00
|
|
|
env:
|
2017-08-26 08:00:11 +02:00
|
|
|
- SUDO_TESTS=true
|
2017-08-22 06:09:42 +02:00
|
|
|
|
2020-03-11 19:05:15 +01:00
|
|
|
- language: cpp
|
|
|
|
os: linux
|
2017-08-22 06:09:42 +02:00
|
|
|
compiler: clang
|
2020-02-23 16:45:07 +01:00
|
|
|
dist: xenial
|
2017-08-26 08:00:11 +02:00
|
|
|
sudo: false
|
2017-08-22 06:09:42 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- attr
|
|
|
|
- fuse
|
|
|
|
- libfuse-dev
|
|
|
|
- gettext
|
2020-02-23 16:45:07 +01:00
|
|
|
- cmake
|
2017-08-22 06:09:42 +02:00
|
|
|
- clang-4.0
|
|
|
|
- clang-tidy-4.0
|
2020-03-11 19:05:15 +01:00
|
|
|
script:
|
|
|
|
- ./build.sh
|
2017-08-22 06:09:42 +02:00
|
|
|
env:
|
2020-02-23 16:45:07 +01:00
|
|
|
- CC=clang-4.0 CXX=clang++-4.0 CHECK=true INTEGRATION=false
|