Skip to content

Commit c9d27bf

Browse files
committed
fix(ci): Override tinyusb in network examples and add all targets to usb test apps
1 parent a8a3254 commit c9d27bf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build_and_run_esp_usb_test_apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
3232
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
3333
python .github/ci/override_managed_component.py tinyusb . ${{ env.ESP_TINYUSB_TEST_APPS }}/*/
34-
idf-build-apps find --path ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target esp32s2 --manifest-file ${{ env.ESP_USB_MANIFEST }}
35-
idf-build-apps build --path ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target esp32s2 --manifest-file ${{ env.ESP_USB_MANIFEST }}
34+
idf-build-apps find --path ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-file ${{ env.ESP_USB_MANIFEST }}
35+
idf-build-apps build --path ${{ env.ESP_TINYUSB_TEST_APPS }}/ --recursive --target all --manifest-file ${{ env.ESP_USB_MANIFEST }}
3636
- uses: actions/upload-artifact@v4
3737
with:
3838
name: usb_test_app_bin_${{ matrix.idf_ver }}

.github/workflows/build_and_run_idf_examples.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ jobs:
88
build:
99
strategy:
1010
matrix:
11-
idf_ver: ["release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4", "release-v5.5", "latest"]
11+
# idf_ver: ["release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4", "release-v5.5", "latest"]
12+
idf_ver: ["latest"]
1213
fail-fast: false
1314
runs-on: ubuntu-latest
1415
container: espressif/idf:${{ matrix.idf_ver }}
@@ -25,6 +26,7 @@ jobs:
2526
. ${IDF_PATH}/export.sh
2627
export EXAMPLES_PATH="${IDF_PATH}/examples/network/sta2eth"
2728
export MANIFEST_FILE="${IDF_PATH}/examples/network/.build-test-rules.yml"
29+
python .github/ci/override_managed_component.py tinyusb . ${EXAMPLES_PATH}
2830
idf-build-apps find --path ${EXAMPLES_PATH}/ --target esp32s2 --manifest-file ${MANIFEST_FILE}
2931
idf-build-apps build --path ${EXAMPLES_PATH}/ --target esp32s2 --manifest-file ${MANIFEST_FILE}
3032
- name: Build USB Device examples

0 commit comments

Comments
 (0)