forked from ngtcp2/nghttp3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
62 lines (62 loc) · 1.15 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
dist: xenial
language: cpp
os:
- osx
- linux
osx_image: xcode11
compiler:
- clang
- gcc
env:
- CI_BUILD=cmake
- CI_BUILD=autotools
matrix:
exclude:
# Exclude gcc build (Need some work) with osx
- os: osx
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8
- autoconf
- automake
- autotools-dev
- libtool
- pkg-config
- libcunit1-dev
- cmake
- cmake-data
homebrew:
packages:
- cunit
before_install:
- $CC --version
- |
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
CMAKE_OPTS=" -DENABLE_ASAN=1"
AUTOTOOLS_OPTS=" --enable-asan"
if [ "$CXX" = "g++" ]; then
export CXX="g++-8" CC="gcc-8" EXTRA_LDFLAGS="-fuse-ld=gold"
else
export CXX="clang++" CC="clang"
fi
fi
- $CC --version
- cmake --version
before_script:
# configure nghttp3
- |
if [ "$CI_BUILD" == "autotools" ]; then
autoreconf -i && ./configure --enable-werror $AUTOTOOLS_OPTS
fi
- |
if [ "$CI_BUILD" == "cmake" ]; then
cmake $CMAKE_OPTS .
fi
script:
# Now build nghttp3 examples and test
- make
- make check