mirror of https://github.com/arendst/Tasmota.git
25 lines
335 B
YAML
25 lines
335 B
YAML
language: python
|
|
|
|
cache:
|
|
directories:
|
|
- "~/.platformio"
|
|
|
|
install:
|
|
- pip install -U platformio
|
|
|
|
env:
|
|
- BOARD=uno
|
|
- BOARD=leonardo
|
|
- BOARD=micro
|
|
- BOARD=megaatmega2560
|
|
- BOARD=due
|
|
- BOARD=yun
|
|
- BOARD=genuino101
|
|
- BOARD=zero
|
|
|
|
script:
|
|
- set -eo pipefail;
|
|
for e in examples/*; do
|
|
platformio ci --board=$BOARD --lib=. $e/*;
|
|
done
|