public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* [COMMITTED] Add collapseRequests=True to all debian-armhf and debian-arm64 builders
@ 2022-06-27 22:59 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2022-06-27 22:59 UTC (permalink / raw)
  To: buildbot; +Cc: Mark Wielaard

The debian-armhf and debian-arm64 are too slow. Add
collapseRequests=True to all builders using those workers so they
don't fall behind.
---
 builder/master.cfg | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/builder/master.cfg b/builder/master.cfg
index fa53ecb..c1bad9f 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -817,6 +817,7 @@ bzip2_debian_arm64_builder = util.BuilderConfig(
         name="bzip2-debian-arm64",
         workernames=["debian-arm64"],
         tags=["bzip2", "debian", "arm64"],
+        collapseRequests=True,
         factory=bzip2_factory_no_valgrind)
 c['builders'].append(bzip2_debian_arm64_builder)
 
@@ -842,6 +843,7 @@ bzip2_debian_armhf_builder = util.BuilderConfig(
         name="bzip2-debian-armhf",
         workernames=["debian-armhf"],
         tags=["bzip2", "debian", "armhf"],
+        collapseRequests=True,
         factory=bzip2_factory_no_valgrind)
 c['builders'].append(bzip2_debian_armhf_builder)
 
@@ -926,6 +928,7 @@ debugedit_debian_arm64_builder = util.BuilderConfig(
         name="debugedit-debian-arm64",
         workernames=["debian-arm64"],
         tags=["debugedit", "debian", "arm64"],
+        collapseRequests=True,
         factory=debugedit_factory)
 c['builders'].append(debugedit_debian_arm64_builder)
 
@@ -951,6 +954,7 @@ debugedit_debian_armhf_builder = util.BuilderConfig(
         name="debugedit-debian-armhf",
         workernames=["debian-armhf"],
         tags=["debugedit", "debian", "armhf"],
+        collapseRequests=True,
         factory=debugedit_factory)
 c['builders'].append(debugedit_debian_armhf_builder)
 
@@ -1033,6 +1037,7 @@ dwz_debian_arm64_builder = util.BuilderConfig(
         name="dwz-debian-arm64",
         workernames=["debian-arm64"],
         tags=["dwz", "debian", "arm64"],
+        collapseRequests=True,
         factory=dwz_factory)
 c['builders'].append(dwz_debian_arm64_builder)
 
@@ -1058,6 +1063,7 @@ dwz_debian_armhf_builder = util.BuilderConfig(
         name="dwz-debian-armhf",
         workernames=["debian-armhf"],
         tags=["dwz", "debian", "armhf"],
+        collapseRequests=True,
         factory=dwz_factory)
 c['builders'].append(dwz_debian_armhf_builder)
 
@@ -1232,6 +1238,7 @@ elfutils_debian_arm64_builder = util.BuilderConfig(
         name="elfutils-debian-arm64",
         workernames=["debian-arm64"],
         tags=["elfutils", "debian", "arm64"],
+        collapseRequests=True,
         factory=elfutils_factory_val)
 c['builders'].append(elfutils_debian_arm64_builder)
 
@@ -1257,6 +1264,7 @@ elfutils_debian_armhf_builder = util.BuilderConfig(
         name="elfutils-debian-armhf",
         workernames=["debian-armhf"],
         tags=["elfutils", "debian", "armhf"],
+        collapseRequests=True,
         factory=elfutils_factory_mua)
 c['builders'].append(elfutils_debian_armhf_builder)
 
@@ -1603,6 +1611,7 @@ binutils_debian_armhf_builder = util.BuilderConfig(
 	name="binutils-debian-armhf",
         workernames=["debian-armhf"],
         tags=["binutils", "debian", "armhf"],
+        collapseRequests=True,
         factory=binutils_factory)
 c['builders'].append(binutils_debian_armhf_builder)
 
@@ -1610,6 +1619,7 @@ binutils_debian_arm64_builder = util.BuilderConfig(
 	name="binutils-debian-arm64",
         workernames=["debian-arm64"],
         tags=["binutils", "debian", "arm64"],
+        collapseRequests=True,
         factory=binutils_factory)
 c['builders'].append(binutils_debian_arm64_builder)
 
@@ -1854,6 +1864,7 @@ gdb_debian_armhf_builder = util.BuilderConfig(
 	name="gdb-debian-armhf",
         workernames=["debian-armhf"],
         tags=["gdb", "debian", "armhf"],
+        collapseRequests=True,
         factory=gdb_factory_make_only)
 c['builders'].append(gdb_debian_armhf_builder)
 
@@ -1861,6 +1872,7 @@ gdb_debian_arm64_builder = util.BuilderConfig(
 	name="gdb-debian-arm64",
         workernames=["debian-arm64"],
         tags=["gdb", "debian", "arm64"],
+        collapseRequests=True,
         factory=gdb_factory)
 c['builders'].append(gdb_debian_arm64_builder)
 
@@ -2240,6 +2252,7 @@ libabigail_debian_arm64_builder = util.BuilderConfig(
         name="libabigail-debian-arm64",
         workernames=["debian-arm64"],
         tags=["libabigail", "debian", "arm64"],
+        collapseRequests=True,
         factory=libabigail_factory_checkonly)
 c['builders'].append(libabigail_debian_arm64_builder)
 
@@ -2272,6 +2285,7 @@ libabigail_debian_armhf_builder = util.BuilderConfig(
         name="libabigail-debian-armhf",
         workernames=["debian-armhf"],
         tags=["libabigail", "debian", "armhf"],
+        collapseRequests=True,
         factory=libabigail_factory_checkonly)
 c['builders'].append(libabigail_debian_armhf_builder)
 
@@ -2369,6 +2383,7 @@ valgrind_debian_arm64_builder = util.BuilderConfig(
         name="valgrind-debian-arm64",
         workernames=["debian-arm64"],
         tags=["valgrind", "debian", "arm64"],
+        collapseRequests=True,
         factory=valgrind_make_check_aux_factory)
 c['builders'].append(valgrind_debian_arm64_builder)
 
@@ -2383,6 +2398,7 @@ valgrind_debian_armhf_builder = util.BuilderConfig(
         name="valgrind-debian-armhf",
         workernames=["debian-armhf"],
         tags=["valgrind", "debian", "armhf"],
+        collapseRequests=True,
         factory=valgrind_make_aux_factory)
 c['builders'].append(valgrind_debian_armhf_builder)
 
-- 
2.30.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-27 22:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-27 22:59 [COMMITTED] Add collapseRequests=True to all debian-armhf and debian-arm64 builders Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).