[PATCH] D144464: [docs] Improve guidance on installing the correct buildbot-worker version
Alex Bradbury via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 21 02:42:32 PST 2023
asb created this revision.
asb added a reviewer: gkistanova.
Herald added subscribers: wingo, pmatos, sameer.abuasal.
Herald added a project: All.
asb requested review of this revision.
Herald added a project: LLVM.
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/*.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D144464
Files:
llvm/docs/HowToAddABuilder.rst
Index: llvm/docs/HowToAddABuilder.rst
===================================================================
--- llvm/docs/HowToAddABuilder.rst
+++ llvm/docs/HowToAddABuilder.rst
@@ -67,10 +67,9 @@
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.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144464.499090.patch
Type: text/x-patch
Size: 935 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230221/bc78a193/attachment.bin>
More information about the llvm-commits
mailing list