forked from allinurl/goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (32 loc) · 792 Bytes
/
.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
dist: xenial
git:
depth: 3
language: c
compiler:
- clang
- gcc
env:
- CONFIGURE_OPTIONS=""
- CONFIGURE_OPTIONS="--enable-geoip=legacy --enable-utf8"
- CONFIGURE_OPTIONS="--enable-geoip=legacy --enable-utf8 --enable-debug"
- CONFIGURE_OPTIONS="--enable-geoip=mmdb --enable-utf8 --with-openssl"
- CONFIGURE_OPTIONS="--enable-geoip=legacy --enable-utf8 --with-openssl --with-getline"
addons:
apt:
packages:
- libncursesw5-dev
- libncurses5-dev
- libgeoip-dev
- autoconf
- autotools-dev
- libssl-dev
- libmaxminddb-dev
- gettext
- autopoint
script:
- autoreconf -fiv -Wall
- ./configure CFLAGS=-Werror $CONFIGURE_OPTIONS
- make -j
- sudo env "PATH=$PATH" make install
after_success:
- goaccess --version