Skip to content

Commit 7d2a5e1

Browse files
committed
change the the manifest rootpath
1 parent a740eb6 commit 7d2a5e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_and_run_esp_usb_test_apps.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
container: espressif/idf:${{ matrix.idf_ver }}
1717
env:
18-
ESP_USB_MANIFEST: ./esp-usb/.build-test-rules.yml
19-
ESP_TINYUSB_TEST_APPS: ./esp-usb/device/esp_tinyusb/test_apps
18+
ESP_USB_MANIFEST: esp-usb/.build-test-rules.yml
19+
ESP_TINYUSB_TEST_APPS: esp-usb/device/esp_tinyusb/test_apps
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:
@@ -33,8 +33,8 @@ jobs:
3333
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
3434
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
3535
python .github/ci/override_managed_component.py tinyusb . ${{ env.ESP_TINYUSB_TEST_APPS }}/*/
36-
idf-build-apps find --path ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-file ${{ env.ESP_USB_MANIFEST }}
37-
idf-build-apps build --path ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-file ${{ env.ESP_USB_MANIFEST }}
36+
idf-build-apps find --paths ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-rootpath ${{ env.ESP_USB_MANIFEST }}
37+
idf-build-apps build --paths ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-rootpath ${{ env.ESP_USB_MANIFEST }}
3838
- uses: actions/upload-artifact@v4
3939
with:
4040
name: usb_test_app_bin_${{ matrix.idf_ver }}

0 commit comments

Comments
 (0)