sunxi-tools/.travis.yml
Bernhard Nortmann 6ade0af8d4 Add Travis CI configuration file
Signed-off-by: Bernhard Nortmann <bernhard.nortmann@web.de>
2016-04-20 09:45:26 +02:00

27 lines
420 B
YAML

# use container-based infrastructure
sudo: false
language: c
os:
- linux
- osx
# take care of the libusb dependency for Linux
addons:
apt:
packages:
- libusb-1.0-0-dev
# take care of the libusb dependency for Mac OS X
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update;
brew install libusb;
fi
# build by simply using the Makefile
script:
- make
- make misc