Skip to content

Update add_c_flags.py #10

Update add_c_flags.py

Update add_c_flags.py #10

Workflow file for this run

name: Tasmota IDF compile test
on:
workflow_dispatch:
push:
jobs:
compile_test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
variant:
- tasmota32c2
- tasmota32
- tasmota32s3
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
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 }}
- uses: jason2866/upload-artifact@v2.0.3
with:
name: firmware
path: ./build_output