[llvm] [Github] Add support for building libc docs in Github actions (PR #69824)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 24 10:41:13 PDT 2023
================
@@ -69,4 +73,10 @@ jobs:
run: |
cmake -B clang-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_SPHINX=ON ./llvm
TZ=UTC ninja -C clang-build docs-clang-html docs-clang-man
+ - name: Build libc docs
+ if: steps.docs-changed-subprojects.outputs.libc_any_changed == 'true'
+ run: |
+ cmake -B libc-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_RUNTIMES="libc" -DLLVM_ENABLE_SPHINX=ON ./runtimes
----------------
michaelrj-google wrote:
ah, you're right. No need to add the extra flag.
https://github.com/llvm/llvm-project/pull/69824
More information about the llvm-commits
mailing list