mirror of https://github.com/arendst/Tasmota.git
26 lines
689 B
YAML
26 lines
689 B
YAML
language: c
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- ~/arduino_ide
|
|
- ~/.arduino15/packages/
|
|
git:
|
|
depth: false
|
|
quiet: true
|
|
env:
|
|
global:
|
|
- PRETTYNAME="Adafruit VEML7700 Arduino Library"
|
|
|
|
before_install:
|
|
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
|
|
|
|
install:
|
|
- arduino --install-library "Adafruit BusIO"
|
|
|
|
script:
|
|
- build_main_platforms
|
|
|
|
# Generate and deploy documentation
|
|
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) |