summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: e35729ff9651ffcdb1648d0fc7a00ed34ac0c416 (plain)
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
language: c
compiler:
  - clang
  - gcc
sudo: false
cache:
  apt: true
env:
  global:
    - PANIC_ACTION="gdb -batch -x raddb/panic.gdb %e %p 1>&0 2>&0"
    - secure: "H+uQeyOgsIyXtIPPG2VzAG8S/8KYGHlHaWhdiNuz1LM3SMcEKoPqG6o/P+HO8HVvYnA6nelyGuEryV90UfuwGY9YC6A/pqPQvx/gXSso63Zt66XSaiZjulCSm9OV8EB3wyWF7VSQ/ZHcn+L01hIlsQXTqLprMaC33cM0FYPr9fY="
  matrix:
    - DO_BUILD=yes LIBS_OPTIONAL=no LIBS_SHARED=yes REPRODUCIBLE=no BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
    - DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes REPRODUCIBLE=no BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
    - DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes REPRODUCIBLE=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
    - DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes REPRODUCIBLE=no BUILD_CFLAGS="-DWITH_EVAL_DEBUG -O2 -g3"
    - DO_BUILD=no
addons:
  coverity_scan:
    project:
      name: FreeRADIUS/freeradius-server
      version: v3.2.x
      description: The FreeRADIUS server project
    notification_email: freeradius-devel@lists.freeradius.org
    build_command_prepend: ./configure
    build_command: make
    branch_pattern: coverity_scan
  apt:
    config:
      retries: true
    sources:
      - couchbase-precise
    packages:
      - autoconf
      - build-essential
      - debhelper
      - devscripts
      - dh-make
      - doxygen
      - fakeroot
      - gdb
      - graphviz
      - lintian
      - pbuilder
      - python-dev
      - python3-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
      - libpam0g-dev
      - libpcap-dev
      - libpcre3-dev
      - libperl-dev
      - libpq-dev
      - libreadline-dev
      - libsnmp-dev
      - libssl-dev
      - libtalloc-dev
      - libtalloc2-dbg
      - libunbound-dev
      - libwbclient-dev
      - libykclient-dev
      - libyubikey-dev
before_install:
  - $CC --version
before_script:
# Configure the server
  - if [ "${DO_BUILD}" = 'yes' ]; then CFLAGS="${BUILD_CFLAGS}" ./configure -C --enable-werror --prefix=$HOME/freeradius --with-shared-libs=$LIBS_SHARED --with-threads=$LIBS_OPTIONAL --with-udpfromto=$LIBS_OPTIONAL --with-openssl=$LIBS_OPTIONAL --with-pcre=$LIBS_OPTIONAL --enable-reproducible-builds=${REPRODUCIBLE}; fi
  - if [ "${DO_BUILD}" = 'no' ]; then ./configure -C --without-modules; fi
# Build the server
  - if [ "${DO_BUILD}" = 'yes' ]; then make -j8; fi
# Run CLANG analyzer if we're building with CLANG
  - if [ "${DO_BUILD}" = 'yes' -a "${COVERITY_SCAN_BRANCH}" != 1 -a ${CC} = 'clang' ]; then make -j8 scan && [ "$(find build/plist/ -name *.html)" = '' ]; fi
script:
  - if [ "${DO_BUILD}" = 'yes' -a "${COVERITY_SCAN_BRANCH}" != 1 ]; then make ci-test; fi
#  - 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