Arduino core 3.2.1
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
name: CI Examples
|
||||
name: CI Examples Arduino IDF 5.4.x based
|
||||
|
||||
on:
|
||||
workflow_dispatch: # Manually start a workflow
|
||||
@@ -12,7 +12,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-24.04, windows-2022, macos-15]
|
||||
os: [ubuntu-latest, windows-latest, macos-15]
|
||||
example:
|
||||
- "examples/arduino-blink"
|
||||
- "examples/arduino-rmt-blink"
|
||||
@@ -20,10 +20,10 @@ jobs:
|
||||
- "examples/arduino-wifiscan"
|
||||
- "examples/arduino-zigbee-light"
|
||||
- "examples/arduino-zigbee-switch"
|
||||
- "examples/tasmota"
|
||||
- "examples/espidf-arduino-h2zero-BLE_scan"
|
||||
#- "examples/espidf-arduino-matter-light"
|
||||
- "examples/arduino-NimBLE-ext_client"
|
||||
- "examples/arduino-matter-light"
|
||||
- "examples/tasmota"
|
||||
- "examples/espidf-arduino-matter-light"
|
||||
- "examples/espidf-arduino-blink"
|
||||
- "examples/espidf-arduino-littlefs"
|
||||
- "examples/espidf-blink"
|
||||
@@ -37,6 +37,15 @@ jobs:
|
||||
- "examples/espidf-ulp"
|
||||
- "examples/espidf-ulp-riscv"
|
||||
- "examples/espidf-ulp-lp"
|
||||
exclude:
|
||||
- os: windows-latest
|
||||
example: "examples/espidf-ulp"
|
||||
- os: windows-latest
|
||||
example: "examples/espidf-ulp-lp"
|
||||
- os: windows-latest
|
||||
example: "examples/espidf-ulp-riscv"
|
||||
- os: windows-latest
|
||||
example: "examples/espidf-arduino-matter-light"
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -48,13 +57,16 @@ jobs:
|
||||
python-version: "3.13"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install wheel
|
||||
pip install -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
|
||||
pip install uv
|
||||
uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
|
||||
pio pkg install --global --platform file://.
|
||||
- name: git clone Tasmota and add to examples
|
||||
if: "matrix.example == 'examples/tasmota'"
|
||||
run: |
|
||||
git clone -b development --depth 1 https://github.com/arendst/Tasmota.git examples/tasmota
|
||||
cp examples/tasmota_platformio_override.ini examples/tasmota/platformio_override.ini
|
||||
- name: Build examples
|
||||
env:
|
||||
PYTHONIOENCODING: utf-8
|
||||
PYTHONUTF8: '1'
|
||||
run: pio run -d ${{ matrix.example }}
|
||||
|
||||
Reference in New Issue
Block a user