Skip to content

Commit

Permalink
Merge pull request adafruit#62 from hoffmannjan/master
Browse files Browse the repository at this point in the history
Add Travis & Doxygen
  • Loading branch information
ladyada authored Feb 13, 2019
2 parents 36ad18a + dbc34b4 commit 911d7b3
Show file tree
Hide file tree
Showing 12 changed files with 809 additions and 713 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# osx
.DS_Store

# doxygen
Doxyfile*
doxygen_sqlite3.db
html
*.tmp
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
language: c
sudo: false

cache:
directories:
- ~/arduino_ide
- ~/.arduino15/packages/

git:
depth: false
quiet: true

env:
global:
- ARDUINO_IDE_VERSION="1.8.7"
- PRETTYNAME="Adafruit BNO055 Library"

before_install:
- rm -rf ./examples_processing # we're not testing processing sketches
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)

install:
- arduino --install-library "Adafruit Unified Sensor"

script:
- build_main_platforms

after_success:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/library_check.sh)
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh)
Loading

0 comments on commit 911d7b3

Please sign in to comment.