You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Cache PlatformIO packages using Travis CI container-based infrastructure
sudo: false
cache:
directories:
- "~/.platformio"
env:
- PLATFORMIO_CI_SRC=examples/SMA/SMA.ino
- CPPLINT=true
install:
- pip install -U platformio
- pip install -U cpplint
- platformio lib -g install file://.
script:
- if [[ "$CPPLINT" ]]; then cpplint --repository=. --recursive --linelength=200 --filter=-build/include,-build/header_guard ./src; else platformio ci --lib="." --board=lolin32; fi