Commit 6ade0af8 authored by Bernhard Nortmann's avatar Bernhard Nortmann
Browse files

Add Travis CI configuration file


Signed-off-by: default avatarBernhard Nortmann <bernhard.nortmann@web.de>
parent b59f4584
# 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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment