[libcxx-commits] [libcxx] [libunwind] [llvm] [libc++][libunwind] Fix documentation CI job after #118159 (PR #118555)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Dec 3 14:08:37 PST 2024
https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/118555
None
>From b3b1cb221aa7388a3d72f1774c70392042139b04 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Tue, 3 Dec 2024 17:06:22 -0500
Subject: [PATCH 1/2] [libc++][libunwind] Fix documentation CI job after
#118159
---
.github/workflows/docs.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index fe9c70cf1f5a95..0bb018b780a2a1 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -148,14 +148,14 @@ jobs:
cmake -B libunwind-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_RUNTIMES="libunwind" -DLLVM_ENABLE_SPHINX=ON ./runtimes
TZ=UTC ninja -C libunwind-build docs-libunwind-html
mkdir built-docs/libunwind
- cp -r libunwind-build/docs/* built-docs/libunwind
+ cp -r libunwind-build/libunwind/docs/* built-docs/libunwind
- name: Build libcxx docs
if: steps.docs-changed-subprojects.outputs.libcxx_any_changed == 'true'
run: |
cmake -B libcxx-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_RUNTIMES="libcxxabi;libcxx;libunwind" -DLLVM_ENABLE_SPHINX=ON ./runtimes
TZ=UTC ninja -C libcxx-build docs-libcxx-html
mkdir built-docs/libcxx
- cp -r libcxx-build/docs/* built-docs/libcxx/
+ cp -r libcxx-build/libcxx/docs/* built-docs/libcxx/
- name: Build libc docs
if: steps.docs-changed-subprojects.outputs.libc_any_changed == 'true'
run: |
>From 73e56646dc808d7e36bd98a61944fd2edeba0197 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Tue, 3 Dec 2024 17:07:12 -0500
Subject: [PATCH 2/2] WIP: touch files to trigger documentation job
---
libcxx/docs/foo | 0
libunwind/docs/foo | 0
2 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 libcxx/docs/foo
create mode 100644 libunwind/docs/foo
diff --git a/libcxx/docs/foo b/libcxx/docs/foo
new file mode 100644
index 00000000000000..e69de29bb2d1d6
diff --git a/libunwind/docs/foo b/libunwind/docs/foo
new file mode 100644
index 00000000000000..e69de29bb2d1d6
More information about the libcxx-commits
mailing list