Tasmota/.travis.yml

49 lines
866 B
YAML
Raw Normal View History

2017-01-28 16:29:36 +00:00
language: python
python:
- '3.7'
2017-01-28 16:29:36 +00:00
sudo: false
install:
2017-01-28 17:58:55 +00:00
- pip install -U platformio
- platformio upgrade
- platformio update
2017-01-28 16:29:36 +00:00
cache:
directories:
- .cache
- $HOME/.platformio
env:
- ENV=tasmota
- ENV=tasmota-minimal
- ENV=tasmota-basic
- ENV=tasmota-knx
- ENV=tasmota-sensors
- ENV=tasmota-display
- ENV=tasmota-ir
- ENV=tasmota-BG
- ENV=tasmota-BR
- ENV=tasmota-CN
- ENV=tasmota-CZ
- ENV=tasmota-DE
- ENV=tasmota-ES
- ENV=tasmota-FR
- ENV=tasmota-GR
- ENV=tasmota-HE
- ENV=tasmota-HU
- ENV=tasmota-IT
- ENV=tasmota-KO
- ENV=tasmota-NL
- ENV=tasmota-PL
- ENV=tasmota-PT
- ENV=tasmota-RU
- ENV=tasmota-SE
- ENV=tasmota-SK
- ENV=tasmota-TR
- ENV=tasmota-TW
- ENV=tasmota-UK
2017-01-28 16:29:36 +00:00
script:
- platformio run -e $ENV
before_deploy:
- for file in .pioenvs/*/firmware.bin; do cp $file ${file%/*}.bin; done