Skip to content

Commit 5593eae

Browse files
committed
Merge branch 'bugfix/build_docs_check_link' into 'master'
build_docs: fix incorrect arguments for linkcheck Closes IDFCI-65 See merge request espressif/esp-idf!9772
2 parents ba717a2 + c54e9d9 commit 5593eae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/build_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,12 @@ def check_docs(language, target, log_file, known_warnings_file, out_sanitized_lo
384384

385385

386386
def action_linkcheck(args):
387+
args.builders = "linkcheck"
387388
return parallel_call(args, call_linkcheck)
388389

389390

390391
def call_linkcheck(entry):
391-
# Remove the last entry which the buildername, since the linkcheck builder is not supplied through the builder list argument
392-
return sphinx_call(*entry[:4], buildername="linkcheck")
392+
return sphinx_call(*entry)
393393

394394

395395
# https://github.com/espressif/esp-idf/tree/

tools/ci/config/post_deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
when: always
1111
paths:
1212
- docs/_build/*/*/*.txt
13+
- docs/_build/*/*/linkcheck/*.txt
1314
expire_in: 1 week
1415
allow_failure: true
1516
dependencies: []

0 commit comments

Comments
 (0)