mirror of https://github.com/arendst/Tasmota.git
39 lines
963 B
YAML
39 lines
963 B
YAML
language: c
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- ~/arduino_ide
|
|
# Caches Arduino IDE + ESP32 platform
|
|
- ~/.arduino15/packages/
|
|
# Caches Arduino platforms
|
|
git:
|
|
depth: false
|
|
quiet: true
|
|
|
|
# Blacklist
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
|
|
env:
|
|
global:
|
|
- PRETTYNAME="Adafruit ILI9341 Arduino Library"
|
|
# Optional, will default to "$TRAVIS_BUILD_DIR/Doxyfile"
|
|
# - DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile
|
|
|
|
before_install:
|
|
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
|
|
|
|
install:
|
|
- arduino --install-library "Adafruit GFX Library","Adafruit STMPE610","Adafruit TouchScreen"
|
|
|
|
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)
|
|
|