Tasmota/.travis.yml.off

48 lines
867 B
Plaintext
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 --dev
- platformio update
2017-01-28 16:29:36 +00:00
2019-11-28 21:10:46 +00:00
cache: false
env:
- ENV=tasmota
- ENV=tasmota-minimal
- ENV=tasmota-lite
- 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
2020-03-04 10:56:35 +00:00
- ENV=tasmota-RO
- ENV=tasmota-RU
- ENV=tasmota-SE
- ENV=tasmota-SK
- ENV=tasmota-TR
- ENV=tasmota-TW
- ENV=tasmota-UK
- ENV=tasmota-VN
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