[libcxx-commits] [libcxx] 49b9b9d - [libc++] Fix the documentation and re-enable documentation CI

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jan 10 05:06:47 PST 2022


Author: Louis Dionne
Date: 2022-01-10T08:05:58-05:00
New Revision: 49b9b9dc9c962d9d5e443220f3861f3321d783c1

URL: https://github.com/llvm/llvm-project/commit/49b9b9dc9c962d9d5e443220f3861f3321d783c1
DIFF: https://github.com/llvm/llvm-project/commit/49b9b9dc9c962d9d5e443220f3861f3321d783c1.diff

LOG: [libc++] Fix the documentation and re-enable documentation CI

The documentation CI job is very cheap, so we can afford to keep it
around even with reduced capacity. This commit fixes the documentation
(which had an invalid reference in it) and re-enables that CI step.

Differential Revision: https://reviews.llvm.org/D116897

Added: 
    

Modified: 
    libcxx/docs/index.rst
    libcxx/utils/ci/buildkite-pipeline.yml

Removed: 
    


################################################################################
diff  --git a/libcxx/docs/index.rst b/libcxx/docs/index.rst
index 817d6b42a5bc1..a03124bb218e1 100644
--- a/libcxx/docs/index.rst
+++ b/libcxx/docs/index.rst
@@ -157,7 +157,7 @@ This list contains known issues with libc++
 
 A full list of currently open libc++ bugs can be `found here`__.
 
-.. __:  https://bugs.llvm.org/buglist.cgi?component=All%20Bugs&product=libc%2B%2B&query_format=advanced&resolution=---&order=changeddate%20DESC%2Cassigned_to%20DESC%2Cbug_status%2Cpriority%2Cbug_id&list_id=74184
+.. __:  https://github.com/llvm/llvm-project/issues?q=label%3Alibc%2B%2B
 
 
 Design Documents
@@ -198,7 +198,7 @@ and `Getting started with LLVM <https://llvm.org/docs/GettingStarted.html>`__.
 **Bug Reports**
 
 If you think you've found a bug in libc++, please report it using
-the `LLVM Bugzilla`_. If you're not sure, you
+the `LLVM bug tracker`_. If you're not sure, you
 can post a message to the `libcxx-dev mailing list`_ or on IRC.
 
 **Patches**

diff  --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index f19015055f85e..c6f4d700abafb 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -481,18 +481,18 @@ steps:
   #         limit: 2
   #   timeout_in_minutes: 120
 
-  # - label: "Documentation"
-  #   command: "libcxx/utils/ci/run-buildbot documentation"
-  #   artifact_paths:
-  #     - "**/test-results.xml"
-  #   agents:
-  #     queue: "libcxx-builders"
-  #     os: "linux"
-  #   retry:
-  #     automatic:
-  #       - exit_status: -1  # Agent was lost
-  #         limit: 2
-  #   timeout_in_minutes: 120
+  - label: "Documentation"
+    command: "libcxx/utils/ci/run-buildbot documentation"
+    artifact_paths:
+      - "**/test-results.xml"
+    agents:
+      queue: "libcxx-builders"
+      os: "linux"
+    retry:
+      automatic:
+        - exit_status: -1  # Agent was lost
+          limit: 2
+    timeout_in_minutes: 120
 
   # Tests on non-Unix platforms
   - label: "Clang-cl (DLL)"


        


More information about the libcxx-commits mailing list