-
Notifications
You must be signed in to change notification settings - Fork 62
/
.travis.yml
71 lines (62 loc) · 1.23 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
language: cpp
os: linux
dist: jammy
addons:
apt:
packages:
- cmake
- make
- bison
- flex
- ronn
- tar
- diffutils
- fuse3
- pkg-config
- binutils-dev
- libarchive-dev
- libbenchmark-dev
- libboost-context-dev
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-python-dev
- libboost-regex-dev
- libboost-system-dev
- libboost-thread-dev
- libbrotli-dev
- libevent-dev
- libjemalloc-dev
- libdouble-conversion-dev
- libiberty-dev
- liblz4-dev
- liblzma-dev
- libssl-dev
- libunwind-dev
- libdwarf-dev
- libelf-dev
- libfmt-dev
- libfuse3-dev
- libgoogle-glog-dev
cache: ccache
git:
depth: false
branches:
only:
- main
- wip
compiler:
- gcc
before_script:
- mkdir build
- cd build
- ccache --set-config=compiler_check=content
- ccache --set-config=max_size=1G
- ccache --set-config=compression=true
- ccache --set-config=compression_level=3
- ccache -p
- ccache -s
- cmake -DWITH_TESTS=1 -DWITH_BENCHMARKS=1 -DWITH_LEGACY_FUSE=1 -DWITH_MAN_PAGES=0 ..
script:
- make -j$(nproc)
- make test
- ccache -s