-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.travis.yml
43 lines (36 loc) · 1.89 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: cpp
os: linux
dist: bionic
sudo: required
arch:
- amd64
- arm64
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libfuse-dev libpoco-dev libboost-dev
- echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
- sudo apt-get -y --no-install-recommends install meson ninja-build
- mkdir /tmp/fuse3 && pushd /tmp/fuse3 && git clone --depth 1 https://github.com/libfuse/libfuse.git .
- mkdir build && pushd build && meson .. && ninja && sudo ninja install && popd && popd
script:
- sh bootstrap
- ./configure --disable-fdpassing || { tail -n 500 config.log; false; }
- make clean
- make -j
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "pNHMGMECUcg/zk3f59ZHMk7XpwNCb7bIuLsVlGcd5hLiVhwlGCO+qiGJVhOf10CPpzKiFT+HeDu7fp3picRUyDuo37hnHprUcWqtLPlw1x1ITTKch+QUeFcG9ZPA47TFbZYZkKU2HclD2+i/6t/zCOznbemB7oWDXZzmKlOJnocjjglK28599a/ZZ1ZoUN6QFjQSskKn85BXls3NNwhMgwlnW2NmkGQIdClTv9iS/Cbx6Px0JqeBGGZfmWCgMWOVJFeOnC2CU8Ohl49Bzq9J0QWskJeoxuDd/rePyBA5CqNYEHvgDvxKOEXLPxkVzv1mpxifHpptiqw/WA0nz+nOd/n+QwtHulVQSIBkzLM/gh5qBKOSIaOaJF/wKiltX2p6iBeXUNqM4Ra+mm3kIJ8F9D6YqP6d/lhcvt1NwsVZx74pwSU0Cl0QT2pxsg8+DP4YIEl0uRUvlc/VbvmyDu0fPVGCf3Mo6yVnbHNsGIsQv76r30Eas6anTFb1bbs2o0rIjGo+yHrTXa/5Uj+NcaHmuqEpVft5aSgoQVVWOwZP4H3NwKl6cL/e7GBYF+w84AtXYptsWxT4qwcWsqyVwbsgWMv5ARXBtLUcZBTQcKVWbb3xpyLXZlhZ3VxyWSBNWSA/Y2g02tJjxD08zFhWtxvdegr77aoQctImJ19dnGHlhUI="
addons:
coverity_scan:
project:
name: "burghardt/clamfs"
description: "Build submitted via Travis CI"
notification_email: [email protected]
build_command_prepend: "sh bootstrap ; ./configure ; make clean"
build_command: "make -j"
branch_pattern: coverity_scan