Skip to content

Commit da73d45

Browse files
authored
Update examples.yml
1 parent 7e9467e commit da73d45

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

.github/workflows/examples.yml

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI Examples Matter
1+
name: CI Examples
22

33
on:
44
workflow_dispatch: # Manually start a workflow
@@ -12,9 +12,31 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [ubuntu-24.04, macos-15]
15+
os: [ubuntu-24.04, windows-2022, macos-15]
1616
example:
17-
- "examples/espidf-arduino-matter-light"
17+
- "examples/arduino-blink"
18+
- "examples/arduino-rmt-blink"
19+
- "examples/arduino-usb-keyboard"
20+
- "examples/arduino-wifiscan"
21+
- "examples/arduino-zigbee-light"
22+
- "examples/arduino-zigbee-switch"
23+
- "examples/tasmota"
24+
- "examples/espidf-arduino-h2zero-BLE_scan"
25+
#- "examples/espidf-arduino-matter-light"
26+
- "examples/arduino-matter-light"
27+
- "examples/espidf-arduino-blink"
28+
- "examples/espidf-arduino-littlefs"
29+
- "examples/espidf-blink"
30+
- "examples/espidf-coap-server"
31+
- "examples/espidf-exceptions"
32+
- "examples/espidf-hello-world"
33+
- "examples/espidf-http-request"
34+
- "examples/espidf-peripherals-uart"
35+
- "examples/espidf-peripherals-usb"
36+
- "examples/espidf-storage-sdcard"
37+
- "examples/espidf-ulp"
38+
- "examples/espidf-ulp-riscv"
39+
- "examples/espidf-ulp-lp"
1840
runs-on: ${{ matrix.os }}
1941
steps:
2042
- uses: actions/checkout@v4
@@ -26,8 +48,13 @@ jobs:
2648
python-version: "3.13"
2749
- name: Install dependencies
2850
run: |
51+
python -m pip install --upgrade pip
2952
pip install wheel
3053
pip install -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
3154
pio pkg install --global --platform file://.
55+
- name: git clone Tasmota and add to examples
56+
run: |
57+
git clone -b development --depth 1 https://github.com/arendst/Tasmota.git examples/tasmota
58+
cp examples/tasmota_platformio_override.ini examples/tasmota/platformio_override.ini
3259
- name: Build examples
3360
run: pio run -d ${{ matrix.example }}

0 commit comments

Comments
 (0)