Berry revert remove BE_USE_PRECOMPILED_OBJECT #4865
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tasmota CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: development | |
| paths: | |
| - '**.c' | |
| - '**.cpp' | |
| - '**.be' | |
| - '**.h' | |
| - '**.hpp' | |
| - '**.ino' | |
| - '**.json' | |
| - '**.properties' | |
| - 'pio-tools/*.py' | |
| - '**.ini' | |
| - '.github/workflows/build_all_the_things.yml' | |
| jobs: | |
| os-check-win: | |
| runs-on: windows-latest | |
| if: github.repository == 'arendst/Tasmota' | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| variant: | |
| - tasmota32-webcam | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| enable-cache: false | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.19.zip | |
| - name: Run PlatformIO | |
| env: | |
| PYTHONIOENCODING: utf-8 | |
| PYTHONUTF8: '1' | |
| run: platformio run -e ${{ matrix.variant }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.variant }} | |
| path: ./build_output | |
| os-check-mac: | |
| runs-on: macos-14 | |
| if: github.repository == 'arendst/Tasmota' | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| variant: | |
| - tasmota32solo1-safeboot | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| enable-cache: false | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.19.zip | |
| - name: Run PlatformIO | |
| env: | |
| PYTHONIOENCODING: utf-8 | |
| PYTHONUTF8: '1' | |
| run: platformio run -e ${{ matrix.variant }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.variant }} | |
| path: ./build_output | |
| base-images: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'arendst/Tasmota' | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| variant: | |
| - tasmota | |
| - tasmota-4M | |
| - tasmota-display | |
| - tasmota-ir | |
| - tasmota-knx | |
| - tasmota-lite | |
| - tasmota-minimal | |
| - tasmota-sensors | |
| - tasmota-zbbridge | |
| - tasmota32 | |
| - tasmota32solo1 | |
| - tasmota32c2 | |
| - tasmota32c3 | |
| - tasmota32c5 | |
| - tasmota32c6 | |
| - tasmota32p4 | |
| - tasmota32s2 | |
| - tasmota32s2cdc | |
| - tasmota32s3 | |
| - tasmota32-zbbrdgpro | |
| - tasmota-zigbee | |
| - tasmota32-bluetooth | |
| - tasmota32-nspanel | |
| - tasmota32-display | |
| - tasmota32-ir | |
| - tasmota32-lvgl | |
| - tasmota32-safeboot | |
| - tasmota32s2-safeboot | |
| - tasmota32s2cdc-safeboot | |
| - tasmota32s3-safeboot | |
| - tasmota32c2-safeboot | |
| - tasmota32c3-safeboot | |
| - tasmota32c5-safeboot | |
| - tasmota32c6-safeboot | |
| - tasmota32p4-safeboot | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| enable-cache: false | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.19.zip | |
| cp ./platformio_override_sample.ini ./platformio_override.ini | |
| - name: Run PlatformIO | |
| env: | |
| PYTHONIOENCODING: utf-8 | |
| PYTHONUTF8: '1' | |
| run: platformio run -e ${{ matrix.variant }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.variant }} | |
| path: ./build_output | |
| language-images: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'arendst/Tasmota' | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| variant: [ tasmota ] | |
| language: [ AD, AF, BG, BR, CN, CZ, DE, ES, FR, FY, GR, HE, HU, IT, KO, LT, NL, PL, PT, RO, RU, SE, SK, TR, TW, UK, VN ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| enable-cache: false | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.19.zip | |
| - name: Run PlatformIO | |
| env: | |
| PYTHONIOENCODING: utf-8 | |
| PYTHONUTF8: '1' | |
| run: platformio run -e ${{ matrix.variant }}-${{ matrix.language }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.variant }}-${{ matrix.language }} | |
| path: ./build_output |