Skip to content

Commit 4676e65

Browse files
committed
fix(ci): Added path to recently added ignore_warning_file.txt in esp-usb
1 parent d018ab6 commit 4676e65

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build_and_run_esp_usb_test_apps.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
ESP_USB_PATH: esp-usb
2525
ESP_USB_CONFIG_FILE: esp-usb/.idf_build_apps.toml
2626
ESP_USB_MANIFEST: esp-usb/.build-test-rules.yml
27+
ESP_IGNORE_WARNING_FILE: esp-usb/.ignore_build_warnings.txt
2728
ESP_TINYUSB_TEST_APPS: esp-usb/device/esp_tinyusb/test_apps
2829
steps:
2930
- uses: actions/checkout@v4
@@ -41,8 +42,8 @@ jobs:
4142
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
4243
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
4344
python .github/ci/override_managed_component.py tinyusb . ${{ env.ESP_TINYUSB_TEST_APPS }}/*/
44-
idf-build-apps find --config-file ${{ env.ESP_USB_CONFIG_FILE }} -p ${{ env.ESP_TINYUSB_TEST_APPS }} -t all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }}
45-
idf-build-apps build --config-file ${{ env.ESP_USB_CONFIG_FILE }} -p ${{ env.ESP_TINYUSB_TEST_APPS }} -t all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }}
45+
idf-build-apps find --config-file ${{ env.ESP_USB_CONFIG_FILE }} -p ${{ env.ESP_TINYUSB_TEST_APPS }} -t all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }} --ignore-warning-files ${{ env.ESP_IGNORE_WARNING_FILE }}
46+
idf-build-apps build --config-file ${{ env.ESP_USB_CONFIG_FILE }} -p ${{ env.ESP_TINYUSB_TEST_APPS }} -t all --manifest-files ${{ env.ESP_USB_MANIFEST }} --manifest-rootpath ${{ env.ESP_USB_PATH }} --ignore-warning-files ${{ env.ESP_IGNORE_WARNING_FILE }}
4647
- uses: actions/upload-artifact@v4
4748
with:
4849
# Test apps builds live under the repository workspace, we use workspace-relative glob

0 commit comments

Comments
 (0)