mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-05 20:06:03 +08:00
26 lines
615 B
YAML
26 lines
615 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/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
|
|
- platformio lib install 44
|
|
|
|
script:
|
|
- platformio ci --lib="." --board=nodemcuv2
|