File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed
device/esp_tinyusb/test_apps/runtime_config/main Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2727 shell : bash
2828 run : |
2929 . ${IDF_PATH}/export.sh
30- pip install pytest pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf pyusb idf-build-apps==2.12.2 --upgrade
30+ pip install pytest pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf pyusb idf-build-apps==2.13.1 --upgrade
3131 - name : Build
3232 shell : bash
3333 run : |
Original file line number Diff line number Diff line change 6161 run : |
6262 . ${IDF_PATH}/export.sh
6363 git config --global safe.directory $(pwd)
64- pip install idf-build-apps==2.12.2 --upgrade
64+ pip install idf-build-apps==2.13.1 --upgrade
6565 export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
6666 export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
6767 export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
Original file line number Diff line number Diff line change 3939 shell : bash
4040 run : |
4141 . ${IDF_PATH}/export.sh
42- pip install idf-component-manager>=2.1.2 idf-build-apps==2.12.2 pyyaml --upgrade
42+ pip install idf-component-manager>=2.1.2 idf-build-apps==2.13.1 pyyaml --upgrade
4343 - name : Build ESP-IDF ${{ matrix.idf_ver }} USB examples
4444 shell : bash
4545 run : |
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ exclude = [
55recursive = true
66manifest_file = " .build-test-rules.yml"
77check_warnings = true
8+ target = " all"
9+ enable_preview_targets = true
810
911# build related options
1012build_dir = " build_@t_@w"
Original file line number Diff line number Diff line change 1+ set (priv_requires "" )
2+ if ((${IDF_VERSION_MAJOR} LESS 6) OR ("${IDF_TARGET} " STREQUAL "linux" ))
3+ list (APPEND requires usb)
4+ endif ()
5+
16idf_component_register(SRC_DIRS .
27 INCLUDE_DIRS .
38 PRIV_INCLUDE_DIRS "../../../include_private"
4- PRIV_REQUIRES usb
59 REQUIRES unity
10+ PRIV_REQUIRES "${priv_requires} "
611 WHOLE_ARCHIVE)
You can’t perform that action at this time.
0 commit comments