Skip to content

Commit

Permalink
Merge branch 'ci/ignore_pkg_resources_deprecation_warning_v5.1' into …
Browse files Browse the repository at this point in the history
…'release/v5.1'

ci: ignore pkg_resources deprecation warning (v5.1)

See merge request espressif/esp-idf!24339
  • Loading branch information
dobairoland committed Jun 21, 2023
2 parents 4bc7626 + 3cad4ca commit 79e12a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/ci/build_template_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ build_stage2() {
--build-log ${BUILD_LOG_CMAKE} \
--size-file size.json \
--collect-size-info size_info.txt \
--default-build-targets esp32,esp32s2,esp32s3,esp32c2,esp32c3,esp32c6,esp32h2
--default-build-targets esp32,esp32s2,esp32s3,esp32c2,esp32c3,esp32c6,esp32h2 \
--ignore-warning-str "DeprecationWarning: pkg_resources is deprecated as an API"
}

build_stage1() {
Expand All @@ -78,7 +79,8 @@ build_stage1() {
--build-log ${BUILD_LOG_CMAKE} \
--size-file size.json \
--collect-size-info size_info.txt \
--default-build-targets esp32,esp32s2,esp32s3,esp32c2,esp32c3,esp32c6,esp32h2
--default-build-targets esp32,esp32s2,esp32s3,esp32c2,esp32c3,esp32c6,esp32h2 \
--ignore-warning-str "DeprecationWarning: pkg_resources is deprecated as an API"\
}

# Default arguments
Expand Down
1 change: 1 addition & 0 deletions tools/ci/ignore_build_warnings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ CryptographyDeprecationWarning
Warning: \d+/\d+ app partitions are too small for binary
CMake Deprecation Warning at main/lib/tinyxml2/CMakeLists\.txt:11 \(cmake_policy\)
The smallest .+ partition is nearly full \(\d+% free space left\)!
DeprecationWarning: pkg_resources is deprecated as an API

0 comments on commit 79e12a1

Please sign in to comment.