summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 5a6e39be32149d263326f48a28708a5c341ac7d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
sudo: required
language: c

compiler:
    - gcc
    - clang

os:
    - linux
    - osx

before_install:
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then apt-get install -qq libudev-dev ; fi

install:
    - ./autogen.sh
    - ./configure
    - make -j4