-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
travis: Initial continues integration build on linux and osx
* Fixup README to render HTML from Markdown * Fixup CMakeLists.txt to have a lower working minimum version * Add .travis.yml and .travis.sh for autobuild
- Loading branch information
Jerry Jacobs
committed
Apr 7, 2016
1 parent
9c5c2a0
commit ca08bed
Showing
5 changed files
with
93 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
if [ "$TRAVIS_OS_NAME" != "osx" ]; then | ||
sudo apt-get update -qq || true | ||
sudo apt-get install -qq -y --no-install-recommends libusb-1.0.0-dev | ||
else | ||
brew install libusb | ||
fi | ||
|
||
mkdir build | ||
cd build | ||
cmake .. | ||
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
sudo: true | ||
language: c | ||
script: | ||
- ./.travis.sh | ||
matrix: | ||
include: | ||
- os: osx | ||
compiler: clang | ||
- os: linux | ||
compiler: gcc | ||
- os: linux | ||
compiler: clang |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README |