.travis.yml 713 B

123456789101112131415161718192021222324252627
  1. language: c
  2. sudo: false
  3. cache:
  4. directories:
  5. - ~/arduino_ide
  6. - ~/.arduino15/packages/
  7. git:
  8. depth: false
  9. quiet: true
  10. env:
  11. global:
  12. - ARDUINO_IDE_VERSION="1.8.5"
  13. - PRETTYNAME="Adafruit GFX Library"
  14. before_install:
  15. - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
  16. install:
  17. - arduino --install-library "Adafruit ILI9341"
  18. script:
  19. - build_main_platforms
  20. # Generate and deploy documentation
  21. after_success:
  22. - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/library_check.sh)
  23. - source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh)