summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: bc384ea3eed3ec6e4cba6f2c1b2e9c41b91b1832 (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
language: c

os:
 - linux
 - osx

env:
 - EXTRALIBS=""
 - EXTRALIBS="libusb-dev"
 - EXTRALIBS="libusb-1.0-0-dev libgd2-xpm-dev"

before_install:
 - sudo apt-get update -qq || brew update
 - sudo apt-get install autopoint $EXTRALIBS || brew install gettext 

compiler:
 - clang
 - gcc

script:
 - PATH=/usr/local/opt/gettext/bin:$PATH:. autoreconf -i -f
 - ./configure && make && make check

notifications:
  recipient:
   - marcus@jet.franken.de
  email:
    on_success: change
    on_failure: always