Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Changed build-apps to use wildcard
Browse files Browse the repository at this point in the history
peter-marcisovsky committed Feb 20, 2024
1 parent a223967 commit cc23a5b
Showing 6 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_run_test_app_usb.yml
Original file line number Diff line number Diff line change
@@ -27,8 +27,8 @@ jobs:
export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
idf-build-apps find
idf-build-apps build
idf-build-apps find --config "sdkconfig.defaults.*"
idf-build-apps build --config "sdkconfig.defaults.*"
- uses: actions/upload-artifact@v2
with:
name: usb_test_app_bin_${{ matrix.idf_ver }}
@@ -62,4 +62,4 @@ jobs:
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
run: pip install --only-binary cryptography pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf pyserial
- name: Run USB Test App on target
run: pytest --target=${{ matrix.idf_target }} -m usb_host --build-dir=build_${{ matrix.idf_target }}
run: pytest --target=${{ matrix.idf_target }} -m usb_host --build-dir=build_${{ matrix.idf_target }_*}
2 changes: 1 addition & 1 deletion .idf_build_apps.toml
Original file line number Diff line number Diff line change
@@ -11,4 +11,4 @@ manifest_file = ".build-test-rules.yml"
check_warnings = true

# build related options
build_dir = "../../../../../build_@t"
build_dir = "../../../../../build_@t_@w"

0 comments on commit cc23a5b

Please sign in to comment.