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.

42 lines
1.5 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. language: python
  2. python:
  3. - "2.7"
  4. # Cache PlatformIO packages using Travis CI container-based infrastructure
  5. #sudo: false
  6. cache:
  7. directories:
  8. - "~/.platformio"
  9. env:
  10. - PLATFORMIO_CI_SRC=examples/BlynkClient
  11. - PLATFORMIO_CI_SRC=examples/FileDownload
  12. - PLATFORMIO_CI_SRC=examples/MqttClient
  13. - PLATFORMIO_CI_SRC=examples/WebClient
  14. - PLATFORMIO_CI_SRC=tools/AT_Debug
  15. - PLATFORMIO_CI_SRC=tools/Diagnostics
  16. - PLATFORMIO_CI_SRC=tools/FactoryReset
  17. # Arduino test
  18. - PLATFORMIO_CI_SRC=tools/test_build PLATFORMIO_CI_ARGS="--project-option='framework=arduino' --board=uno --board=leonardo --board=yun --board=megaatmega2560 --board=genuino101 --board=mkr1000USB --board=zero --board=teensy31 --board=bluepill_f103c8 --board=uno_pic32 --board=esp01 --board=nodemcuv2 --board=esp32dev"
  19. # Energia test
  20. - PLATFORMIO_CI_SRC=tools/test_build PLATFORMIO_CI_ARGS="--project-option='framework=energia' --board=lplm4f120h5qr"
  21. install:
  22. # ChipKIT issue: install 32-bit support for GCC PIC32
  23. - sudo apt-get install libc6-i386
  24. - pip install -U https://github.com/platformio/platformio/archive/develop.zip
  25. #
  26. # Libraries from PlatformIO Library Registry:
  27. #
  28. # http://platformio.org/lib/show/89/PubSubClient
  29. # http://platformio.org/lib/show/415/Blynk
  30. # http://platformio.org/lib/show/1202/CRC32
  31. # http://platformio.org/lib/show/1286/StreamDebugger
  32. - platformio lib -g install 89 415 1202 1286
  33. script: make travis-build