2020-05-04 07:42:15 +01:00
|
|
|
name: Tasmota ESP32 CI
|
|
|
|
|
2020-05-25 21:46:16 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
2020-05-04 07:42:15 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
tasmota32:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32
|
|
|
|
|
2020-05-05 07:51:03 +01:00
|
|
|
|
2020-05-12 13:59:41 +01:00
|
|
|
tasmota32-webcam:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-webcam
|
|
|
|
|
2020-05-05 07:51:03 +01:00
|
|
|
tasmota32-minimal:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-minimal
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-lite:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-lite
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-knx:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-knx
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-sensors:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-sensors
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-display:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-display
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-ir:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-ir
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-BG:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-BG
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-BR:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-BR
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-CN:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-CN
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-CZ:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-CZ
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-DE:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-DE
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-ES:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-ES
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
tasmota32-FR:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-FR
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-GR:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-GR
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-HE:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-HE
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-HU:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-HU
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-IT:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-IT
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-KO:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-KO
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-NL:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-NL
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-PL:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-PL
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-PT:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-PT
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-RO:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-RO
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-RU:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-RU
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-SE:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-SE
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-SK:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-SK
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-TR:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-TR
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-TW:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-TW
|
2020-05-05 07:51:03 +01:00
|
|
|
|
|
|
|
tasmota32-UK:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
|
|
|
- name: Run PlatformIO
|
2020-05-05 09:35:32 +01:00
|
|
|
run: |
|
|
|
|
cp platformio_override_sample.ini platformio_override.ini
|
|
|
|
platformio run -e tasmota32-UK
|