Skip to content

Commit e136148

Browse files
committed
add rootpath for idf examples cli
1 parent 72237f8 commit e136148

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/ci/.build_and_run_idf_examples_config.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ target = "all"
1414

1515
# Build related options (we need them to place build artifacts via target folders)
1616
build_dir = "build_@t_@w"
17-
work_dir = "@f_@t_@w"

.github/workflows/build_and_run_esp_usb_test_apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
4141
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
4242
python .github/ci/override_managed_component.py tinyusb . ${{ env.ESP_TINYUSB_TEST_APPS }}/*/
43-
idf-build-apps find --config-file ${{ env.ESP_USB_CONFIG_FILE}} -p ${{ env.ESP_TINYUSB_TEST_APPS }} --recursive -t all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }} --build-dir "build_@t_@w"
44-
# idf-build-apps build --paths ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }} --build-dir "build_@t_@w"
43+
idf-build-apps find --config-file ${{ env.ESP_USB_CONFIG_FILE}} -p ${{ env.ESP_TINYUSB_TEST_APPS }} --recursive -t all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }}
44+
# idf-build-apps build --paths ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }}
4545
- uses: actions/upload-artifact@v4
4646
with:
4747
name: usb_test_app_bin_${{ matrix.idf_ver }}

.github/workflows/build_and_run_idf_examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
. ${IDF_PATH}/export.sh
4040
export MANIFEST_FILE="${IDF_PATH}/examples/peripherals/.build-test-rules.yml"
4141
python .github/ci/override_managed_component.py tinyusb . ${IDF_PATH}/examples/peripherals/usb/device/tusb_*
42-
idf-build-apps find --config-file ${CONFIG_PATH} --manifest-files ${MANIFEST_FILE}
42+
idf-build-apps find --config-file ${CONFIG_PATH} --manifest-files ${MANIFEST_FILE} --manifest-rootpath ${IDF_PATH}
4343
# idf-build-apps build --config-file ${CONFIG_PATH} --manifest-files ${MANIFEST_FILE}
4444
- uses: actions/upload-artifact@v4
4545
with:

0 commit comments

Comments
 (0)