Skip to content

Commit

Permalink
Merge branch 'bugfix/add-ci-allow-line' into 'master'
Browse files Browse the repository at this point in the history
tools: Add /*error*.o and /*error*.d to allowed build lines

See merge request espressif/esp-idf!13251
  • Loading branch information
chshu committed Apr 20, 2021
2 parents af2139e + 9c9838f commit f8addc5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/ci/check_build_warnings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@
IGNORE_WARNS = [
re.compile(r_str) for r_str in [
r'library/error\.o',
r'/.*error\S*\.o',
r'.*error.*\.c\.obj',
r'.*error.*\.cpp\.obj',
r'.*error.*\.cxx\.obj',
r'.*error.*\.cc\.obj',
r'-Werror',
r'error\.d',
r'/.*error\S*.d',
r'reassigning to symbol',
r'changes choice state',
r'crosstool_version_check\.cmake',
Expand Down

0 comments on commit f8addc5

Please sign in to comment.