[llvm] 5061357 - [docs] Improve guidance on installing the correct buildbot-worker version

Alex Bradbury via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 21 10:40:14 PST 2023


Author: Alex Bradbury
Date: 2023-02-21T18:39:42Z
New Revision: 50613578d914a0ab95fcce80b519fdf46264501c

URL: https://github.com/llvm/llvm-project/commit/50613578d914a0ab95fcce80b519fdf46264501c
DIFF: https://github.com/llvm/llvm-project/commit/50613578d914a0ab95fcce80b519fdf46264501c.diff

LOG: [docs] Improve guidance on installing the correct buildbot-worker version

The docs currently state that buildbot-worker 2.8.5 is used. However,
looking at the buildbot release notes
<http://docs.buildbot.net/current/relnotes/index.html>, this release
doesn't seem to exist (it's not on PyPI either). The document also links
to http://trac.buildbot.net/ as a source to retrieve an old version and
install it manually, but this is dead.

Instead, drop that advice and suggest pip3 install
buildbot-worker==2.8.4, as done by the Dockerfiles in
llvm-zorg/buildbot/google/docker/*.

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

Added: 
    

Modified: 
    llvm/docs/HowToAddABuilder.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/HowToAddABuilder.rst b/llvm/docs/HowToAddABuilder.rst
index 5bb82489262e7..a8794707ccdb6 100644
--- a/llvm/docs/HowToAddABuilder.rst
+++ b/llvm/docs/HowToAddABuilder.rst
@@ -67,10 +67,9 @@ Here are the steps you can follow to do so:
    of parallelism (-j param) would give the fastest build.  You can build
    multiple configurations on one computer.
 
-#. Install buildbot-worker (currently we are using buildbot version 2.8.5).
-   Depending on the platform, buildbot-worker could be available to download and
-   install with your package manager, or you can download it directly from
-   `<http://trac.buildbot.net>`_ and install it manually.
+#. Install buildbot-worker (currently we are using buildbot version 2.8.4).
+   This specific version can be installed using ``pip``, with a command such
+   as ``pip3 install buildbot-worker==2.8.4``.
 
 #. Create a designated user account, your buildbot-worker will be running under,
    and set appropriate permissions.


        


More information about the llvm-commits mailing list