Skip to content

Commit 44dbe6c

Browse files
fix(ci): Disable run for usb_host_flash_disk on p4
1 parent 73b88d9 commit 44dbe6c

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/build_idf_examples.yml renamed to .github/workflows/build_and_run_idf_examples.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# This workflow builds esp-idf examples:
1+
# This workflow builds and runs esp-idf examples:
22
#
3+
# Build:
34
# - usb device examples: with overridden esp_tinyusb from esp-usb/device/esp_tinyusb
4-
# - Override esp_tinyusb component only for IDF >= 6.0 temporarily
5+
# - Override esp_tinyusb component only for IDF 5.3, IDF 5.5, IDF 6.0 and latest temporarily, others have not been backported
56
#
67
# - usb host examples:
78
# - Overridden usb component from esp-usb/host/usb and overridden class drivers from esp-usb/host/class
@@ -11,6 +12,15 @@
1112
#
1213
# - cherryusb examples are ignored
1314
# - usb_host_lib example -> manifest file must be created for IDF < 6.0 to override usb component
15+
#
16+
# Run:
17+
# - usb device examples: Run on usb_device targets, with matrix of all listed releases
18+
# - usb host examples: Run on usb_host_examples, with matrix of all listed releases, except IDF Latest
19+
#
20+
#
21+
# Temporarily disabled tests and TODOs of this workflow:
22+
# - USB Device examples build: Only for only for IDF 5.3, IDF 5.5, IDF 6.0 and latest temporarily, others have not been backported
23+
# - USB Host examples run: IDF latest disabled (ECO4-ECO5 build-runner mismatch)
1424

1525
name: Build ESP-IDF USB examples
1626

@@ -163,6 +173,12 @@ jobs:
163173
example: host
164174
- runner_tag: usb_device
165175
example: device
176+
exclude:
177+
# Temp exclude esp32p4 usb_host_flash_disk run for IDF Latest (ECO4-ECO5 build-runner mismatch)
178+
- runner_tag: usb_host_flash_disk
179+
idf_ver: "latest"
180+
- runner_tag: usb_device
181+
idf_ver: "latest"
166182
runs-on: [self-hosted, linux, docker, "${{ matrix.idf_target }}", "${{ matrix.runner_tag }}"]
167183
container:
168184
image: espressif/idf:${{ matrix.idf_ver }}

0 commit comments

Comments
 (0)