git/sha1collisiondetection/.travis.yml

language: c

os:
- linux
- osx

compiler:
- gcc
- clang

env:
  matrix:
  - LIBTOOL=
  - LIBTOOL=libtool-disabled

matrix:
  allow_failures:
  - os: osx

before_install:
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libtool; fi
  
script:
  - make
  - make test

notifications:
  on_success: change
  on_failure: always