File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 15
15
- name : Upload components to component service
16
16
uses : espressif/upload-components-ci-action@v1
17
17
with :
18
- directories : " bdc_motor;cbor;jsmn;led_strip;libsodium;pid_ctrl;qrcode;nghttp;sh2lib;expat;esp_encrypted_img;coap;pcap;json_generator;json_parser;usb/usb_host_cdc_acm;usb/usb_host_msc;usb/usb_host_uvc"
18
+ directories : " bdc_motor;cbor;jsmn;led_strip;libsodium;pid_ctrl;qrcode;nghttp;sh2lib;expat;esp_encrypted_img;coap;pcap;json_generator;json_parser;usb/usb_host_cdc_acm;usb/usb_host_msc;usb/usb_host_uvc;opencv "
19
19
namespace : " espressif"
20
20
api_token : ${{ secrets.IDF_COMPONENT_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -12,6 +12,16 @@ if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER_EQUAL "4.4")
12
12
list (APPEND EXTRA_COMPONENT_DIRS ../pid_ctrl ../esp_encrypted_img ../pcap)
13
13
endif ()
14
14
15
+ # 2.1. Add here if the component is compatible with IDF == v4.3
16
+ if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_EQUAL "4.3" )
17
+ list (APPEND EXTRA_COMPONENT_DIRS ../opencv)
18
+ endif ()
19
+
20
+ # 2.2. Add here if the component is compatible with IDF == v4.4
21
+ if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_EQUAL "4.4" )
22
+ list (APPEND EXTRA_COMPONENT_DIRS ../opencv)
23
+ endif ()
24
+
15
25
# 3. Add here if the component is compatible with IDF >= v5.0
16
26
if ("${IDF_VERSION_MAJOR} .${IDF_VERSION_MINOR} " VERSION_GREATER_EQUAL "5.0" )
17
27
list (APPEND EXTRA_COMPONENT_DIRS ../bdc_motor ../led_strip ../sh2lib ../nghttp)
You can’t perform that action at this time.
0 commit comments