blob: 178f8d5dd4ca9f1a0492632ba591ff506a844611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
script:
- cd libnet/
- ./autogen.sh
- ./configure --prefix=/ --disable-silent-rules
- make clean
- make
- make install-strip DESTDIR=/tmp/libnet
- ls -lR /tmp/libnet
|