unicorn/.travis.yml

16 lines
350 B
YAML
Raw Normal View History

2016-03-01 06:49:27 +01:00
language: c
sudo: false
before_install:
- export LD_LIBRARY_PATH=`pwd`/samples/:$LD_LIBRARY_PATH
2016-03-03 16:25:29 +01:00
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install glib; fi
2016-03-03 16:25:29 +01:00
2016-03-01 06:49:27 +01:00
script:
- ./make.sh
compiler:
- clang
- gcc
2016-03-03 16:14:25 +01:00
os:
- linux
- osx