Skip to content

Commit f58ffc3

Browse files
committed
disable the build to speed up CI
1 parent 493ec6b commit f58ffc3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_and_run_esp_usb_test_apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
4141
python .github/ci/override_managed_component.py tinyusb . ${{ env.ESP_TINYUSB_TEST_APPS }}/*/
4242
idf-build-apps find --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 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 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"
4444
- uses: actions/upload-artifact@v4
4545
with:
4646
name: usb_test_app_bin_${{ matrix.idf_ver }}

.github/workflows/build_and_run_idf_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
export MANIFEST_FILE="${IDF_PATH}/examples/network/.build-test-rules.yml"
3232
python .github/ci/override_managed_component.py tinyusb . ${EXAMPLES_PATH}
3333
idf-build-apps find --paths ${EXAMPLES_PATH}/ --target esp32s2 --manifest-files ${MANIFEST_FILE} --manifest-rootpath ${IDF_PATH}
34-
idf-build-apps build --paths ${EXAMPLES_PATH}/ --target esp32s2 --manifest-files ${MANIFEST_FILE} --manifest-rootpath ${IDF_PATH}
34+
# idf-build-apps build --paths ${EXAMPLES_PATH}/ --target esp32s2 --manifest-files ${MANIFEST_FILE} --manifest-rootpath ${IDF_PATH}
3535
- name: Build USB Device examples
3636
shell: bash
3737
run: |
@@ -40,7 +40,7 @@ jobs:
4040
python .github/ci/override_managed_component.py tinyusb . ${IDF_PATH}/examples/peripherals/usb/device/tusb_*
4141
cd ${IDF_PATH}
4242
idf-build-apps find --config-file ${CONFIG_PATH} --manifest-files ${MANIFEST_FILE}
43-
idf-build-apps build --config-file ${CONFIG_PATH} --manifest-files ${MANIFEST_FILE}
43+
# idf-build-apps build --config-file ${CONFIG_PATH} --manifest-files ${MANIFEST_FILE}
4444
- uses: actions/upload-artifact@v4
4545
with:
4646
# We upload only the USB Device example binaries to run them on the target

0 commit comments

Comments
 (0)