forked from fluent/fluent-bit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
90 lines (82 loc) · 2.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
dist: bionic
language: c
# The leak sanitizer uses ptrace, which doesn't work under the
# travis container infrastructure, so we enable 'sudo'
sudo: true
git:
depth: 3
compiler:
#- gcc
- clang
env:
#- FLB_OPT="-DFLB_JEMALLOC=On"
#- FLB_OPT="-DFLB_JEMALLOC=Off"
#- FLB_OPT="-DFLB_SMALL=On"
- FLB_OPT="-DSANITIZE_ADDRESS=On"
#- FLB_OPT="-DSANITIZE_UNDEFINED=On"
# Disable Memory Sanitizer since it causes conflicts on coroutines
# interfaces. We need to add the stack registrations otherwise it
# fails with:
#
# ==22536==ERROR: MemorySanitizer: SEGV on unknown...7fe2231f8c48 T22537)
# ==22536==The signal is caused by a READ memory access.
# ==22536==Hint: PC is at a non-executable region. Maybe a wild jump?
# #0 0xaadc6f in _fini (...in/flb-rt-in_cpu+0xaadc6f)
#
# - FLB_OPT="-DSANITIZE_MEMORY=On"
# Many errors on this
# - FLB_OPT="-DSANITIZE_THREAD=On"
before_script:
arch: arm64
#- amd64
#- arm64
# matrix:
# include:
# - os: osx
# env: FLB_OPT="-DFLB_JEMALLOC=Off"
# script: |
# brew update
# brew install bison flex || true
# ci/do-ut || true
# - os: linux
# env: FLB_OPT="-DFLB_COVERAGE=On"
# dist: xenial
# sudo: true
# language: c
# compiler: gcc
# script: |
# sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 90
# sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90
# sudo usermod -a -G systemd-journal $(id -un)
# sudo -E su -p travis -c "PATH=$PATH ci/do-ut"
# - os: linux
# services:
# - docker
# dist: xenial
# sudo: true
# language: c
# compiler: gcc
# env: DOCKER_BUILD=1
# script: |
# echo "===== BUILD DOCKER IMAGE ======="
# docker build -t test-image -f Dockerfile .
# addons:
# apt:
# sources: {}
# packages: {}
script: |
echo "CC = $CC, CXX = $CXX"
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 90
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90
sudo usermod -a -G systemd-journal $(id -un)
#sudo update-alternatives --install /usr/bin/llvm-symbolizer llvm-symbolizer /usr/lib/llvm-6.0/bin/llvm-symbolizer 1
sudo -E su -p travis -c "PATH=$PATH ci/do-ut"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
- libsystemd-dev
- gcovr