forked from espressif/esp-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.build-test-rules.yml
28 lines (23 loc) · 954 Bytes
/
.build-test-rules.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
device/esp_tinyusb:
enable:
- if: SOC_USB_OTG_SUPPORTED == 1
host/class:
enable:
- if: SOC_USB_OTG_SUPPORTED == 1
host/class/uvc/usb_host_uvc/examples/camera_display:
enable:
- if: (IDF_VERSION_MAJOR >= 5 and IDF_VERSION_MINOR >= 3)
reason: This example uses esp_lcd API introduced in v5.3
# Host tests
host/class/cdc/usb_host_cdc_acm/host_test:
enable:
- if: IDF_TARGET in ["linux"] and (IDF_VERSION_MAJOR >= 5 and IDF_VERSION_MINOR >= 5)
reason: USB mocks are run only for the latest version of IDF
host/class/hid/usb_host_hid/host_test:
enable:
- if: IDF_TARGET in ["linux"] and (IDF_VERSION_MAJOR >= 5 and IDF_VERSION_MINOR >= 5)
reason: USB mocks are run only for the latest version of IDF
host/class/uvc/usb_host_uvc/host_test:
enable:
- if: IDF_TARGET in ["linux"] and (IDF_VERSION_MAJOR >= 5 and IDF_VERSION_MINOR >= 5)
reason: USB mocks are run only for the latest version of IDF