Tasmota/.github/workflows/build_all_the_things.yml

154 lines
4.1 KiB
YAML
Raw Normal View History

name: Tasmota CI
on:
workflow_dispatch:
pull_request:
branches: development
paths:
- '**.c'
- '**.cpp'
- '**.h'
- '**.hpp'
- '**.ino'
- '**.json'
- '**.properties'
- 'pio-tools/*.py'
2021-10-26 09:46:31 +01:00
- '**.ini'
- '.github/workflows/build_all_the_things.yml'
jobs:
os-check-win:
2022-09-14 20:19:34 +01:00
runs-on: windows-2019
if: github.repository == 'arendst/Tasmota'
strategy:
fail-fast: true
matrix:
variant:
2022-09-18 12:32:48 +01:00
- tasmota32-safeboot
steps:
- uses: actions/checkout@v3
- name: Set up Python
2022-10-24 14:03:19 +01:00
uses: actions/setup-python@v4
- name: Install dependencies
run: |
2022-09-18 12:32:48 +01:00
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
2022-10-11 17:29:40 +01:00
- uses: actions/upload-artifact@v3
with:
name: firmware
path: ./build_output
os-check-mac:
runs-on: macos-latest
if: github.repository == 'arendst/Tasmota'
strategy:
fail-fast: true
matrix:
variant:
- tasmota32-webcam
steps:
- uses: actions/checkout@v3
- name: Set up Python
2022-10-24 14:03:19 +01:00
uses: actions/setup-python@v4
- name: Install dependencies
run: |
2022-09-18 12:32:48 +01:00
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
2022-10-11 17:29:40 +01:00
- uses: actions/upload-artifact@v3
with:
name: firmware
path: ./build_output
base-images:
runs-on: ubuntu-latest
2021-12-12 16:22:37 +00:00
if: github.repository == 'arendst/Tasmota'
strategy:
fail-fast: true
matrix:
variant:
- tasmota
2022-03-08 10:12:13 +00:00
- tasmota4M
- tasmota-display
- tasmota-ir
- tasmota-knx
- tasmota-lite
- tasmota-minimal
- tasmota-sensors
- tasmota-zbbridge
- tasmota32
- tasmota32c3
- tasmota32s2
2022-09-18 12:32:48 +01:00
- tasmota32s3
2022-06-02 19:44:00 +01:00
- tasmota32-zbbrdgpro
- tasmota-zigbee
- tasmota32-bluetooth
- tasmota32-core2
2022-06-02 19:44:00 +01:00
- tasmota32-nspanel
- tasmota32-display
- tasmota32-ir
- tasmota32-lvgl
2022-06-07 15:37:10 +01:00
- tasmota32c3cdc
- tasmota32s2cdc
- tasmota32s3cdc
- tasmota32solo1
- tasmota32solo1-safeboot
- tasmota32c3-safeboot
2022-06-07 15:37:10 +01:00
- tasmota32c3cdc-safeboot
- tasmota32s2-safeboot
2022-06-07 15:37:10 +01:00
- tasmota32s2cdc-safeboot
- tasmota32s3-safeboot
2022-06-07 15:37:10 +01:00
- tasmota32s3cdc-safeboot
steps:
- uses: actions/checkout@v3
- name: Set up Python
2022-10-24 14:03:19 +01:00
uses: actions/setup-python@v4
- name: Install dependencies
run: |
2022-09-18 12:32:48 +01:00
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}
2022-10-11 17:29:40 +01:00
- uses: actions/upload-artifact@v3
with:
name: firmware
path: ./build_output
language-images:
runs-on: ubuntu-latest
2021-12-12 16:22:37 +00:00
if: github.repository == 'arendst/Tasmota'
strategy:
fail-fast: true
matrix:
variant: [ tasmota ]
2022-08-07 10:33:32 +01:00
language: [ AD, AF, BG, BR, CN, CZ, DE, ES, FR, FY, GR, HE, HU, IT, KO, NL, PL, PT, RO, RU, SE, SK, TR, TW, UK, VN ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
2022-10-24 14:03:19 +01:00
uses: actions/setup-python@v4
- name: Install dependencies
run: |
2022-09-18 12:32:48 +01:00
pip install wheel
#python -m pip install --upgrade pip
pip install -U platformio
#platformio upgrade --dev
#platformio update
- name: Run PlatformIO
run: platformio run -e ${{ matrix.variant }}-${{ matrix.language }}
2022-10-11 17:29:40 +01:00
- uses: actions/upload-artifact@v3
with:
name: firmware
path: ./build_output