aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 5540774c7c1300dbc9a47db9b5599033428df90e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: c

compiler:
  - clang
  - gcc

os:
  - linux
  - osx

before_install:
  - if [ $TRAVIS_OS_NAME == "linux" ]; then
      sudo apt-get -qq update;
      sudo apt-get -qq install byacc flex;
    elif [ $TRAVIS_OS_NAME == "osx" ]; then
      brew update;
      brew install byacc flex;
    fi