2017-01-28 16:29:36 +00:00
|
|
|
language: python
|
|
|
|
python:
|
2019-09-10 14:04:37 +01:00
|
|
|
- '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
|
2020-02-13 15:19:02 +00:00
|
|
|
- platformio upgrade --dev
|
2019-10-15 13:32:57 +01:00
|
|
|
- platformio update
|
2017-01-28 16:29:36 +00:00
|
|
|
|
2019-11-28 21:10:46 +00:00
|
|
|
cache: false
|
2019-10-10 16:01:15 +01:00
|
|
|
|
2019-08-27 14:13:57 +01:00
|
|
|
env:
|
2019-10-27 11:44:37 +00:00
|
|
|
- ENV=tasmota
|
|
|
|
- ENV=tasmota-minimal
|
2019-12-17 14:13:47 +00:00
|
|
|
- ENV=tasmota-lite
|
2019-10-27 11:44:37 +00:00
|
|
|
- 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
|
2019-10-27 11:44:37 +00:00
|
|
|
- ENV=tasmota-RU
|
|
|
|
- ENV=tasmota-SE
|
|
|
|
- ENV=tasmota-SK
|
|
|
|
- ENV=tasmota-TR
|
|
|
|
- ENV=tasmota-TW
|
|
|
|
- ENV=tasmota-UK
|
2020-10-12 10:29:36 +01:00
|
|
|
- ENV=tasmota-VN
|
2019-08-27 14:13:57 +01:00
|
|
|
|
2017-01-28 16:29:36 +00:00
|
|
|
script:
|
2019-08-27 14:13:57 +01:00
|
|
|
- platformio run -e $ENV
|
2017-06-01 16:37:30 +01:00
|
|
|
before_deploy:
|
|
|
|
- for file in .pioenvs/*/firmware.bin; do cp $file ${file%/*}.bin; done
|