mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-19 20:37:20 +00:00

Removed Travis deploy as it fails to properly byte align resulting in corrupted binaries.
15 lines
247 B
YAML
15 lines
247 B
YAML
language: python
|
|
python:
|
|
- '2.7'
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- "~/.platformio"
|
|
install:
|
|
- pip install -U platformio
|
|
|
|
script:
|
|
- platformio run
|
|
before_deploy:
|
|
- for file in .pioenvs/*/firmware.bin; do cp $file ${file%/*}.bin; done
|