Skip to content

Commit

Permalink
feat(cdc_acm): Host test build only for IDF latest (IDF 5.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-marcisovsky committed Dec 20, 2024
1 parent 51918c4 commit 7d5d5ca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .build-test-rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ host/class/uvc/usb_host_uvc/examples/camera_display:
# 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 >= 4)

- 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 >= 4)
reason: USB mock was added in v5.4
- 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 >= 4)
reason: USB mock was added in v5.4
- 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

0 comments on commit 7d5d5ca

Please sign in to comment.