Index: buildbot/osuosl/master/config/workers.py
===================================================================
--- buildbot/osuosl/master/config/workers.py
+++ buildbot/osuosl/master/config/workers.py
@@ -1,4 +1,4 @@
-# TODO: Rename workers with "slave" as a part of the name.
+# TODO: Rename workers with "worker" as a part of the name.
# TODO: Refactor to define a list of tuples, each of which describes a worker, then enumerate and create as data driven.
from buildbot.plugins import worker
Index: buildbot/osuosl/master/public_html/index.html
===================================================================
--- buildbot/osuosl/master/public_html/index.html
+++ buildbot/osuosl/master/public_html/index.html
@@ -25,7 +25,7 @@
Buildbot Information:
- - Buildslave information
+ - Buildworker information
- ChangeSource information.
- About this Buildbot
Index: buildbot/osuosl/master/templates/root.html
===================================================================
--- buildbot/osuosl/master/templates/root.html
+++ buildbot/osuosl/master/templates/root.html
@@ -19,10 +19,10 @@
Our goal is to provide extensive build and test coverage for all supported platforms.
If you are willing to donate some CPU cycles and some room on a hard drive, you are welcome.
- The instructions of how to add a build slave to the LLVM Buildbot infrastructure can be found
+ The instructions of how to add a build worker to the LLVM Buildbot infrastructure can be found
in the
-
- How to Add Your Build Configuration to the LLVM Buildbot Infrastructure
+
+ How To Add Your Build Configuration To LLVM Buildbot Infrastructure
document.
@@ -49,7 +49,7 @@
- Recent Builds are summarized here, one
per line.
- - Buildslave information
+ - Buildworker information
- Changesource information.
- About this Buildbot
Index: llvmlab/llvmlab/ui/ci/views.py
===================================================================
--- llvmlab/llvmlab/ui/ci/views.py
+++ llvmlab/llvmlab/ui/ci/views.py
@@ -55,11 +55,11 @@
k_days_data = int(request.args.get('days', 1))
k_pixels_per_minute = float(request.args.get('pixels_per_minute', .5))
- # Aggregate builds by slave, for completed builds within the desired time
+ # Aggregate builds by worker, for completed builds within the desired time
# frame.
current_time = time.time()
builders = current_app.config.status.builders
- slave_builders = util.multidict(
+ worker_builders = util.multidict(
(build.slave, build)
for builds in builders.values()
for build in builds
@@ -78,9 +78,9 @@
build_chart_data = {}
max_x = 0
min_time = min(build.start_time
- for builds in slave_builders.values()
+ for builds in worker_builders.values()
for build in builds)
- for slave, builders in slave_builders.items():
+ for worker, builders in worker_builders.items():
# Order the builders by time.
builders.sort(key = lambda b: b.start_time)
@@ -103,7 +103,7 @@
(build.start_time - min_time) / 60)
max_x = max(max_x, left + width)
rows[-1].append(ChartItem(build, hex_color, left, width))
- build_chart_data[slave] = rows
+ build_chart_data[worker] = rows
build_chart = { 'data' : build_chart_data,
'max_x' : max_x }
Index: llvmlab/llvmlab/ui/templates/build_chart.html
===================================================================
--- llvmlab/llvmlab/ui/templates/build_chart.html
+++ llvmlab/llvmlab/ui/templates/build_chart.html
@@ -30,9 +30,9 @@
Build Chart
-{% for slave,builds in build_chart.data|dictsort %}
+{% for worker,builds in build_chart.data|dictsort %}
- {{ slave }} |
+ {{ worker }} |
{% for row in builds %}
Index: llvmlab/llvmlab/ui/templates/buildbot_monitor.html
===================================================================
--- llvmlab/llvmlab/ui/templates/buildbot_monitor.html
+++ llvmlab/llvmlab/ui/templates/buildbot_monitor.html
@@ -18,7 +18,7 @@
Result |
Start Time |
End Time |
- Slave |
+ Worker |
{% for build in builds %}
Index: zorg/buildbot/builders/LLDBBuilder.py
===================================================================
--- zorg/buildbot/builders/LLDBBuilder.py
+++ zorg/buildbot/builders/LLDBBuilder.py
@@ -36,7 +36,7 @@
obj_dir=build_dir)
env = {}
- # Determine Slave Environment and Set MSVC environment.
+ # Determine Worker Environment and Set MSVC environment.
if vs and vs != 'manual':
f.addStep(SetProperty(
command=getVisualStudioEnvironment(vs, target_arch),
Index: zorg/buildbot/builders/annotated/hip-build.sh
===================================================================
--- zorg/buildbot/builders/annotated/hip-build.sh
+++ zorg/buildbot/builders/annotated/hip-build.sh
@@ -41,8 +41,8 @@
git -C "${TESTSUITE_ROOT}" reset --hard origin/main
# Set-up variables
-BUILDBOT_SLAVENAME=$(whoami)
-BUILD_DIR="${BUILDBOT_ROOT}/${BUILDBOT_SLAVENAME}/${BUILDBOT_BUILDERNAME}"
+BUILDBOT_WORKERNAME=$(whoami)
+BUILD_DIR="${BUILDBOT_ROOT}/${BUILDBOT_WORKERNAME}/${BUILDBOT_BUILDERNAME}"
DESTDIR=${BUILD_DIR}/install
EXTERNAL_DIR=/buildbot/Externals
|