diff options
| author | Nick Desaulniers <nickdesaulniers@users.noreply.github.com> | 2024-12-03 10:05:10 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-03 10:05:10 -0800 |
| commit | ce416a073be6da06be7fd2d427b896b380fb3877 (patch) | |
| tree | 49b71822002e05ad9cb41a0bd79bb06104eb2fc0 /.github/workflows/docs.yml | |
| parent | d1f4f6368064d8d7bf09fbd5be8d74846d532c30 (diff) | |
[Github] fix libc documentation path (#118514)
Running `ninja docs-libc-html` produces content in
{build_dir}/libc/docs, not
{build_dir}/docs. Presubmit jobs for "Test documentation build" were
failing as
a result of commit 97f94af3560d ("[Github] Upload built docs as artifact
from
test build docs job (#118159)")
Link: #118159
Link: #117220
Diffstat (limited to '.github/workflows/docs.yml')
| -rw-r--r-- | .github/workflows/docs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2e4009994a2b..fe9c70cf1f5a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -162,7 +162,7 @@ jobs: cmake -B libc-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_RUNTIMES="libc" -DLLVM_ENABLE_SPHINX=ON ./runtimes TZ=UTC ninja -C libc-build docs-libc-html mkdir built-docs/libc - cp -r libc-build/docs/* built-docs/libc/ + cp -r libc-build/libc/docs/* built-docs/libc/ - name: Build LLD docs if: steps.docs-changed-subprojects.outputs.lld_any_changed == 'true' run: | |
