summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7358f4c7c87625beb91d2bc439c17e51f71f045c (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
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c

# Use docker for quicker builds, it now allows https://docs.travis-ci.com/user/apt/
sudo: false

compiler:
  - gcc
  - clang

addons:
  apt:
    packages:
      - tree
      - doxygen

script:
  - ./autogen.sh
  - ./configure --prefix=/ --disable-silent-rules
  - make clean
  - make -C doc doc
  - make
  - make install-strip DESTDIR=/tmp/libnet
  - tree /tmp/libnet