You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
780 B
26 lines
780 B
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) |