| 123456789101112131415161718192021222324252627 |
- language: c
- sudo: false
- # Blacklist
- branches:
- except:
- - gh-pages
- env:
- global:
- - PRETTYNAME="Adafruit SGP30 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 ILI9341","Adafruit GFX Library"
- 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)
|