Skip to content

Commit 055f3fc

Browse files
Merge pull request #297 from espressif/fix/ci_disable_uvc_example_build
fix(ci): Temp disable UVC example build in idf for idf 5.5
2 parents 37bda44 + ab359f2 commit 055f3fc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/ci/.idf-build-examples-rules.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@ examples/peripherals/usb/host:
2121
disable:
2222
- if: SOC_USB_OTG_SUPPORTED != 1
2323

24+
#TODO: Change back to:
25+
# - if: (IDF_VERSION >= "5.5.0")
26+
# reason: Run UVC example starts using UVC driver 2.0 only on IDF version 5.5
27+
# After the release/v5.5 docker is updated
2428
examples/peripherals/usb/host/uvc:
2529
enable:
26-
- if: (IDF_VERSION >= "5.5.0")
27-
reason: Run UVC example starts using UVC driver 2.0 only on IDF version 5.5
30+
- if: (IDF_VERSION >= "6.0.0")
31+
reason: Temporarily build only for IDF 6.0
2832
disable:
2933
- if: SOC_USB_OTG_SUPPORTED != 1

0 commit comments

Comments
 (0)