20 lines
334 B
YAML
20 lines
334 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
|
|
# Cache PlatformIO packages using Travis CI container-based infrastructure
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- "~/.platformio"
|
|
|
|
env:
|
|
- PLATFORMIO_CI_SRC=examples/JsonStreamingParser
|
|
|
|
|
|
install:
|
|
- pip install -U platformio
|
|
|
|
script:
|
|
- platformio ci --lib="." --board=nodemcuv2
|