-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix doc build issue in ERROR_CODES.md #25894
Merged
andy31415
merged 4 commits into
project-chip:master
from
greg-fer:doc_fix_doc_build_issue_in_error_codes
Mar 30, 2023
Merged
Fix doc build issue in ERROR_CODES.md #25894
andy31415
merged 4 commits into
project-chip:master
from
greg-fer:doc_fix_doc_build_issue_in_error_codes
Mar 30, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
documentation
Improvements or additions to documentation
scripts
labels
Mar 30, 2023
PR #25894: Size comparison from a27bc8c to 7fbe20f Increases (1 build for cc32xx)
Full report (1 build for cc32xx)
|
pullapprove
bot
requested review from
amitnj,
andy31415,
anush-apple,
arkq,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chshu,
chulspro,
cliffamzn,
Damian-Nordic,
dhrishi,
electrocucaracha,
emargolis,
franck-apple,
gjc13,
harimau-qirex,
harsha-rajendran,
hawk248,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jmeg-sfy,
joonhaengHeo,
jtung-apple and
kcoppock
March 30, 2023 12:19
pullapprove
bot
requested review from
LuDuda,
mlepage-google,
mrjerryjohns,
msandstedt,
mspang,
nivi-apple,
saurabhst,
selissia,
sharadb-amazon,
tecimovic,
turon,
vijs,
vivien-apple,
woody-apple,
xylophone21,
younghak-hwang,
yufengwangca and
yunhanw-google
March 30, 2023 12:20
PR #25894: Size comparison from a27bc8c to e29498a Decreases (1 build for cc32xx)
Full report (1 build for cc32xx)
|
Removed period from the ASN.1 entry as it is breaking markdown formatting and the whole SDK doc build. Checked against headers in src\lib\asn1, which allow ASN1 without the period. Signed-off-by: Grzegorz Ferenc <[email protected]>
Removed lines that caused the docbuild to fail with "src/ERROR_CODES.md:259: WARNING: Duplicate reference definition: // [myst.duplicate_def]" issue. These lines excluded ERROR_CODES.md from spellchecking, but this exclusion is already ensured by line 68 in .spellcheck.yml. Signed-off-by: Grzegorz Ferenc <[email protected]>
Fix version of dependancy pydata-sphinx-theme to 0.13.1 since v0.13.2 introduced breaking changes. Signed-off-by: Gaute Svanes Lunde <[email protected]>
greg-fer
force-pushed
the
doc_fix_doc_build_issue_in_error_codes
branch
from
March 30, 2023 12:33
e29498a
to
b40c439
Compare
andy31415
approved these changes
Mar 30, 2023
@@ -134,14 +134,11 @@ def main(): | |||
"src/lib/core/CHIPError.h": ErrorDescriptor(section="SDK Core", code_range=0x000, macro_regex=r"^#define\s+(?P<name>[_A-Z0-9]+)\s+CHIP(_CORE)?_ERROR[(](?P<code>(0x[a-fA-F0-9]+)|\d+)[)]"), | |||
"src/inet/InetError.h": ErrorDescriptor(section="SDK Inet Layer", code_range=0x100, macro_regex=r"^#define\s+(?P<name>[_A-Z0-9]+)\s+CHIP_INET_ERROR[(](?P<code>(0x[a-fA-F0-9]+)|\d+)[)]"), | |||
"src/include/platform/CHIPDeviceError.h": ErrorDescriptor(section="SDK Device Layer", code_range=0x200, macro_regex=r"^#define\s+(?P<name>[_A-Z0-9]+)\s+CHIP_DEVICE_ERROR[(](?P<code>(0x[a-fA-F0-9]+)|\d+)[)]"), | |||
"src/lib/asn1/ASN1Error.h": ErrorDescriptor(section="ASN.1 Layer", code_range=0x300, macro_regex=r"^#define\s+(?P<name>[_A-Z0-9]+)\s+CHIP_ASN1_ERROR[(](?P<code>(0x[a-fA-F0-9]+)|\d+)[)]"), | |||
"src/lib/asn1/ASN1Error.h": ErrorDescriptor(section="ASN1 Layer", code_range=0x300, macro_regex=r"^#define\s+(?P<name>[_A-Z0-9]+)\s+CHIP_ASN1_ERROR[(](?P<code>(0x[a-fA-F0-9]+)|\d+)[)]"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"ASN.1" is the right spelling, though!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The PR #25888 was merged with red doc build, which introduced a doc build issue to master and prevents doc deployment.
To fix the issue, this PR is:
Also cherry-picked the commit from #25893