ci: check_public_headers: exclude sections generated on RISC-V target

This commit is contained in:
Ivan Grokhotkov 2022-06-29 22:48:16 +02:00
parent 28ac778099
commit fefbf6a5b3
No known key found for this signature in database
GPG Key ID: 1E050E141B280628

View File

@ -88,7 +88,7 @@ class PublicHeaderChecker:
self.error_macro = re.compile(r'#error')
self.error_orphan_kconfig = re.compile(r'#error CONFIG_VARS_USED_WHILE_SDKCONFIG_NOT_INCLUDED')
self.kconfig_macro = re.compile(r'\bCONFIG_[A-Z0-9_]+')
self.assembly_nocode = r'^\s*(\.file|\.text|\.ident).*$'
self.assembly_nocode = r'^\s*(\.file|\.text|\.ident|\.option|\.attribute).*$'
self.check_threads = []
self.job_queue = queue.Queue()