summaryrefslogtreecommitdiff
path: root/libc/utils/buildbot
diff options
context:
space:
mode:
authorPaula Toth <paulatoth@google.com>2020-10-08 13:43:47 -0700
committerPaula Toth <paulatoth@google.com>2020-10-08 13:43:53 -0700
commitf60686f35cc89504f3411f49cf16a651a74be6eb (patch)
tree8f509c8c212926f1e592a5a8b51b0756f72b9aaa /libc/utils/buildbot
parente1b5fcb9424a39ec663675604dca77aa98b347c1 (diff)
[libc] Update buildbot worker version to 2.8.4.
Tested locally by connecting to LLVM master. (: http://lab.llvm.org:8011/#/builders/78/builds/1 Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D89069
Diffstat (limited to 'libc/utils/buildbot')
-rw-r--r--libc/utils/buildbot/Dockerfile2
-rwxr-xr-xlibc/utils/buildbot/run.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/libc/utils/buildbot/Dockerfile b/libc/utils/buildbot/Dockerfile
index c5edd1ac36a7..3140c5a44481 100644
--- a/libc/utils/buildbot/Dockerfile
+++ b/libc/utils/buildbot/Dockerfile
@@ -6,7 +6,7 @@ RUN apt-get update
RUN apt-get install -y build-essential clang subversion git vim \
zip libstdc++6:i386 file binutils-dev binutils-gold cmake python-pip \
ninja-build
-RUN python -m pip install buildbot-slave==0.8.12
+RUN python -m pip install buildbot-worker==2.8.4
# Temporary dependencies for AOR tests.
RUN apt-get install -y libmpfr-dev libmpc-dev
diff --git a/libc/utils/buildbot/run.sh b/libc/utils/buildbot/run.sh
index 38299239740d..45f8df47ede7 100755
--- a/libc/utils/buildbot/run.sh
+++ b/libc/utils/buildbot/run.sh
@@ -3,8 +3,8 @@
# This serves as the entrypoint for docker to allow us to
# run and start the buildbot while supplying the password
# as an argument.
-buildslave create-slave --keepalive=200 "${WORKER_NAME}" \
+buildbot-worker create-worker --keepalive=200 "${WORKER_NAME}" \
lab.llvm.org:9990 "${WORKER_NAME}" "$1"
-buildslave start "${WORKER_NAME}"
+buildbot-worker start "${WORKER_NAME}"
tail -f ${WORKER_NAME}/twistd.log