mirror of https://github.com/arendst/Tasmota.git
Create CI_github.yml
This commit is contained in:
parent
2e725b712b
commit
e233c3830d
|
@ -0,0 +1,441 @@
|
||||||
|
name: PlatformIO CI
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tasmota:
|
||||||
|
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 tasmota
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-minimal
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-lite
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-knx
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-sensors
|
||||||
|
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-display
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-ir
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-BG
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-BR
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-CN
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-CZ
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-DE
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-ES
|
||||||
|
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-FR
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-GR
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-HE
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-HU
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-IT
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-KO
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-NL
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-PL
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-PT
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-RO
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-RU
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-SE
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-SK
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-TR
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-TW
|
||||||
|
|
||||||
|
tasmota-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
|
||||||
|
run: platformio run -e tasmota-UK
|
Loading…
Reference in New Issue