adafruit_bno055 / .travis.yml @ 5f6b7a75
History | View | Annotate | Download (757 Bytes)
1 | 55e2f6d1 | Jan Hoffmann | language: c |
---|---|---|---|
2 | sudo: false |
||
3 | |||
4 | cache:
|
||
5 | directories:
|
||
6 | - ~/arduino_ide
|
||
7 | - ~/.arduino15/packages/
|
||
8 | |||
9 | git:
|
||
10 | depth: false |
||
11 | quiet: true |
||
12 | |||
13 | env:
|
||
14 | global:
|
||
15 | - ARDUINO_IDE_VERSION="1.8.7"
|
||
16 | - PRETTYNAME="Adafruit BNO055 Library"
|
||
17 | |||
18 | before_install:
|
||
19 | - rm -rf ./examples_processing # we're not testing processing sketches |
||
20 | - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
|
||
21 | |||
22 | install:
|
||
23 | - arduino --install-library "Adafruit Unified Sensor"
|
||
24 | |||
25 | script:
|
||
26 | - build_main_platforms
|
||
27 | |||
28 | after_success:
|
||
29 | - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/library_check.sh)
|
||
30 | - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh) |