Tasmota/.github/workflows/CI_github_ESP32.yml

686 lines
17 KiB
YAML
Raw Normal View History

2020-08-17 18:45:59 +01:00
name: Tasmota ESP32 CI
on:
pull_request:
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
2020-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2021-04-20 16:19:49 +01:00
tasmota32solo1:
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: |
platformio run -e tasmota32solo1
- uses: actions/upload-artifact@v2
with:
name: firmware
path: ./build_output
2020-08-17 18:45:59 +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
2020-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-webcam
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +01:00
2020-12-29 16:52:25 +00:00
tasmota32-odroidgo:
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: |
platformio run -e tasmota32-odroidgo
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-12-29 16:52:25 +00:00
2021-01-20 10:48:17 +00:00
tasmota32-core2:
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: |
platformio run -e tasmota32-core2
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2021-01-20 10:48:17 +00:00
2021-02-11 13:53:21 +00:00
tasmota32-bluetooth:
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: |
platformio run -e tasmota32-bluetooth
- uses: actions/upload-artifact@v2
with:
name: firmware
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-display
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2021-06-16 16:45:44 +01:00
tasmota32-lvgl:
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: |
platformio run -e tasmota32-lvgl
- uses: actions/upload-artifact@v2
with:
name: firmware
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-ir
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
tasmota32-AF:
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: |
platformio run -e tasmota32-AF
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-BG
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-BR
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-CN
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-CZ
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-DE
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-ES
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-FR
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
tasmota32-FY:
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: |
platformio run -e tasmota32-FY
- uses: actions/upload-artifact@v2
with:
name: firmware
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-GR
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-HE
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-HU
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-IT
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-KO
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-NL
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-PL
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-PT
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-RO
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-RU
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-SE
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-SK
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-TR
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-10-05 11:03:39 +01:00
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-TW
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
2020-08-17 18:45:59 +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-09-12 10:15:46 +01:00
run: |
2020-08-17 18:45:59 +01:00
platformio run -e tasmota32-UK
2020-10-05 11:03:39 +01:00
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output
tasmota32-VN:
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: |
platformio run -e tasmota32-VN
- uses: actions/upload-artifact@v2
with:
name: firmware
2021-02-08 09:51:44 +00:00
path: ./build_output