30 lines
771 B
YAML
30 lines
771 B
YAML
# documentation at https://docs.platformio.org/en/latest/integration/ci/travis.html
|
|
|
|
language: python
|
|
python:
|
|
- "3.7"
|
|
|
|
# Cache PlatformIO packages using Travis CI container-based infrastructure
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- "~/.platformio"
|
|
- $HOME/.cache/pip
|
|
|
|
env:
|
|
- PLATFORMIO_CI_SRC=examples/SSD1306UiDemo
|
|
- PLATFORMIO_CI_SRC=examples/SSD1306SimpleDemo
|
|
- PLATFORMIO_CI_SRC=examples/SSD1306DrawingDemo
|
|
- PLATFORMIO_CI_SRC=examples/SSD1306OTADemo
|
|
- PLATFORMIO_CI_SRC=examples/SSD1306ClockDemo
|
|
- PLATFORMIO_CI_SRC=examples/SSD1306TwoScreenDemo
|
|
|
|
|
|
install:
|
|
- pip install -U platformio
|
|
- pio update
|
|
- platformio lib -g install "paulstoffregen/Time@^1.6"
|
|
|
|
script:
|
|
- platformio ci --lib="." --board=nodemcuv2
|