Skip to content

Commit cf07904

Browse files
authored
[Github] Fix libc docs build (llvm#70363)
llvm#69824 added libc build, but missed the folder in ninja command, is causing failures. ninja: fatal: chdir to 'docs-libc-html' - No such file or directory ninja: Entering directory `docs-libc-html'
1 parent ff94061 commit cf07904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
if: steps.docs-changed-subprojects.outputs.libc_any_changed == 'true'
120120
run: |
121121
cmake -B libc-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_RUNTIMES="libc" -DLLVM_ENABLE_SPHINX=ON ./runtimes
122-
TZ=UTC ninja -C docs-libc-html
122+
TZ=UTC ninja -C libc-build docs-libc-html
123123
- name: Build LLD docs
124124
if: steps.docs-changed-subprojects.outputs.lld_any_changed == 'true'
125125
run: |

0 commit comments

Comments
 (0)