forked from FreeRADIUS/freeradius-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
107 lines (107 loc) · 3.22 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
language: c
compiler:
- clang
- gcc
sudo: true
dist: trusty
env:
global:
- LDAP_TEST_SERVER="127.0.0.1"
- LDAP_TEST_SERVER_PORT="3890"
- PANIC_ACTION="gdb -batch -x raddb/panic.gdb %e %p 1>&0 2>&0"
- SQL_MYSQL_TEST_SERVER="127.0.0.1"
- SQL_POSTGRESQL_TEST_SERVER="127.0.0.1"
- secure: "H+uQeyOgsIyXtIPPG2VzAG8S/8KYGHlHaWhdiNuz1LM3SMcEKoPqG6o/P+HO8HVvYnA6nelyGuEryV90UfuwGY9YC6A/pqPQvx/gXSso63Zt66XSaiZjulCSm9OV8EB3wyWF7VSQ/ZHcn+L01hIlsQXTqLprMaC33cM0FYPr9fY="
matrix:
- DO_BUILD=yes LIBS_OPTIONAL=no LIBS_SHARED=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
- DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
- DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG -O2 -g3"
- DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes BUILD_CFLAGS="-DNDEBUG"
- DO_BUILD=no
addons:
coverity_scan:
project:
name: FreeRADIUS/freeradius-server
version: master
description: The FreeRADIUS server project
notification_email: freeradius-devel@lists.freeradius.org
build_command_prepend: ./configure -with-rlm-python-bin=/usr/bin/python2.7
build_command: make
branch_pattern: coverity_scan
postgresql: "9.4"
apt:
sources:
- couchbase-precise
packages:
- autoconf
- build-essential
- debhelper
- devscripts
- dh-make
- doxygen
- fakeroot
- gcc-4.9
- gccgo-4.9
- gdb
- graphviz
- lintian
- mysql-server
- pbuilder
- python-dev
- quilt
- libruby
- ruby-dev
- libcollectdclient-dev
- firebird-dev
- freetds-dev
- libcap-dev
- libcouchbase2-libevent
- libcouchbase-dev
- libcurl4-openssl-dev
- libgdbm-dev
- libhiredis-dev
- libidn11-dev
- libiodbc2-dev
- libiodbc2
- libjson0
- libjson0-dev
- libkrb5-dev
- libldap2-dev
- libmemcached-dev
- libmysqlclient-dev
- libnl-genl-3-dev
- libpam0g-dev
- libpcap-dev
- libpcre3-dev
- libperl-dev
- libpq-dev
- libpython-all-dev
- libreadline-dev
- libsnmp-dev
- libssl-dev
- libtalloc-dev
- libtalloc2-dbg
- libunbound-dev
- libwbclient-dev
- libykclient-dev
- libyubikey-dev
- slapd
- ldap-utils
services:
- mysql
- postgresql
- redis-server
before_install:
- if [ "${CC}" == 'gcc' ]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60; fi
- if [ "${CC}" == 'gcc' ]; then sudo update-alternatives --config gcc; fi
- $CC --version
before_script:
- ./scripts/travis/build.sh
script:
# If this is not a coverity scan, run the tests. This is an optimisation to make sure we don't run tests
# on the same build product multiple times.
- if [ "${DO_BUILD}" = 'yes' -a "${COVERITY_SCAN_BRANCH}" != 1 ]; then make travis-test; fi
# Build the debian packages (disabled until we get the dependencies fixed)
# - if [ "${DO_BUILD}" = 'no' ]; then make deb; fi
# Build the doxygen documentation
- if [ "${DO_BUILD}" = 'no' ]; then cd doc/source; doxygen 3>&1 1>&2 2>&3 | grep -iv '^warning:' | tee doxygen_stderr.log && [ ! -n "$(cat doxygen_stderr.log)" ]; fi