mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
20 lines
380 B
YAML
20 lines
380 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/HX711Serial
|
|
- PLATFORMIO_CI_SRC=examples/HX711SerialBegin
|
|
|
|
install:
|
|
- pip install -U platformio
|
|
|
|
script:
|
|
- platformio ci --board=megaatmega2560 --lib="."
|