Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libc][docs] add redirect for math/index.html #120274

Merged
merged 4 commits into from
Dec 17, 2024

Conversation

nickdesaulniers
Copy link
Member

commit a9aff44 ("[libc][docs] reorganize documentation (#118836)")

moved https://libc.llvm.org/math/index.html to
https://libc.llvm.org/headers/math/index.html which makes links from various
slide decks stale.

There's an extension for sphinx that can generate redirects. Add a dependency
on that, then use it to create a redirect so that those older links still work.

I was able to install this sphinx extension via:

$ sudo apt install python3-sphinx-reredirects

We may need to install this on whatever server generates the llvm
documentation.

commit a9aff44 ("[libc][docs] reorganize documentation (llvm#118836)")

moved https://libc.llvm.org/math/index.html to
https://libc.llvm.org/headers/math/index.html which makes links from various
slide decks stale.

There's an extension for sphinx that can generate redirects.  Add a dependency
on that, then use it to create a redirect so that those older links still work.

I was able to install this sphinx extension via:

    $ sudo apt install python3-sphinx-reredirects

We may need to install this on whatever server generates the llvm
documentation.
@llvmbot
Copy link
Member

llvmbot commented Dec 17, 2024

@llvm/pr-subscribers-libc

Author: Nick Desaulniers (nickdesaulniers)

Changes

commit a9aff44 ("[libc][docs] reorganize documentation (#118836)")

moved https://libc.llvm.org/math/index.html to
https://libc.llvm.org/headers/math/index.html which makes links from various
slide decks stale.

There's an extension for sphinx that can generate redirects. Add a dependency
on that, then use it to create a redirect so that those older links still work.

I was able to install this sphinx extension via:

$ sudo apt install python3-sphinx-reredirects

We may need to install this on whatever server generates the llvm
documentation.


Full diff: https://github.com/llvm/llvm-project/pull/120274.diff

1 Files Affected:

  • (modified) libc/docs/conf.py (+9-1)
diff --git a/libc/docs/conf.py b/libc/docs/conf.py
index 502a479b3eb2c5..ca4b5e25f5dffc 100644
--- a/libc/docs/conf.py
+++ b/libc/docs/conf.py
@@ -25,7 +25,11 @@
 
 # Add any Sphinx extension module names here, as strings. They can be extensions
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ["sphinx.ext.intersphinx", "sphinx.ext.todo"]
+extensions = [
+    "sphinx.ext.intersphinx",
+    "sphinx.ext.todo",
+    "sphinx_reredirects"
+]
 
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ["_templates"]
@@ -261,3 +265,7 @@
 
 # Enable this if you want TODOs to show up in the generated documentation.
 todo_include_todos = True
+
+redirects = {
+  "math/index": "../headers/math/index.html"
+}

Copy link

github-actions bot commented Dec 17, 2024

✅ With the latest revision this PR passed the Python code formatter.

@nickdesaulniers nickdesaulniers merged commit 4c5ddc9 into llvm:main Dec 17, 2024
10 of 12 checks passed
@nickdesaulniers nickdesaulniers deleted the docs_redirect branch December 17, 2024 18:37
@llvm-ci
Copy link
Collaborator

llvm-ci commented Dec 17, 2024

LLVM Buildbot has detected a new failure on builder publish-runtimes-sphinx-docs running on as-worker-4 while building libc,llvm at step 5 "build-docs-libc-html-docs-libcxx-html-docs-libu...".

Full details are available at: https://lab.llvm.org/buildbot/#/builders/178/builds/1136

Here is the relevant piece of the build log for the reference
Step 5 (build-docs-libc-html-docs-libcxx-html-docs-libu...) failure: build (failure)
0.790 [0/3/1] Generating html Sphinx documentation for libc into "/home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libc/docs/html"
FAILED: libc/docs/CMakeFiles/docs-libc-html /home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libc/docs/CMakeFiles/docs-libc-html 
cd /home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libc/docs && /usr/local/bin/cmake -E env /usr/local/bin/sphinx-build -b html -d /home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libc/docs/_doctrees-libc-html -q -t builder-html -D version=20 -D release= -tPreRelease /home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/llvm-project/libc/docs /home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libc/docs/html

Extension error:
Could not import extension sphinx_reredirects (exception: No module named 'sphinx_reredirects')
1.252 [0/2/2] Generating html Sphinx documentation for libunwind into "/home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libunwind/docs/html"
13.432 [0/1/3] Generating html Sphinx documentation for libcxx into "/home/buildbot/as-worker-4/publish-runtimes-sphinx-docs/build/libcxx/docs/html"
ninja: build stopped: subcommand failed.

@nickdesaulniers
Copy link
Member Author

yeah, looks like this isn't going to work...

@nickdesaulniers
Copy link
Member Author

nickdesaulniers commented Dec 17, 2024

@diogoteles08 , @marcauberer any idea how we're supposed to be able to add sphinx plugins...?

@nickdesaulniers
Copy link
Member Author

I've emailed @gkistanova to see if we can install the dependency on the bot or not.

@boomanaiden154
Copy link
Contributor

It might be better to update the bot to run pip install on the docs requirements.txt so that we don't need manual intervention in the future (if feasible, not sure how the bot is configured).

@marcauberer
Copy link
Member

Indeed.
@nickdesaulniers Please also use the following command to regenerate requiresments-hashed.txt:

pip-compile --generate-hashes --output-file=requirements-hashed.txt requirements.txt

@nickdesaulniers
Copy link
Member Author

oh man, I can't figure out how to install pip-compile on my debian workstation.

@boomanaiden154
Copy link
Contributor

pip3 install pip-tools doesn't work?

@nickdesaulniers
Copy link
Member Author

We have a corporate policy on "externally managed python environments" that blocks the usage of pip install in favor of apt install; but I don't think pip-compile is packaged for debian FWICT?

@boomanaiden154
Copy link
Contributor

Surprised I have not run into that policy yet...

Can you do a venv?

python3 -m venv env
source ./env/bin/activate
pip3 install pip-tools

nickdesaulniers added a commit to nickdesaulniers/llvm-project that referenced this pull request Dec 17, 2024
@nickdesaulniers
Copy link
Member Author

nickdesaulniers commented Dec 17, 2024

Updating the hashes in #120315.

The bot will still be broken, but the fix is either:

  • manual intervention each time each requirement is added
  • pip install -r llvm/docs/requirements.txt BEFORE running ninja <whatever to build docs>.

@boomanaiden154
Copy link
Contributor

pip install -r llvm/docs/requirements.txt BEFORE running ninja .

This is what we should be doing. I think a couple other bots already do it. Should be a relatively simple zorg patch.

@nickdesaulniers
Copy link
Member Author

zorg/buildbot/builders/SphinxDocsBuilder.py ?

@boomanaiden154
Copy link
Contributor

Looks right to me.

@nickdesaulniers
Copy link
Member Author

llvm/llvm-zorg#345

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants