26 lines
780 B
YAML
26 lines
780 B
YAML
language: c
|
|
sudo: false
|
|
|
|
# Blacklist
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
|
|
env:
|
|
global:
|
|
- PRETTYNAME="Adafruit CircuitPlayground Arduino Library"
|
|
- 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 LED Backpack Library","Adafruit GFX Library","Adafruit SleepyDog Library","Adafruit Zero FFT Library"
|
|
|
|
script:
|
|
- build_cplay_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) |