public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* [COMMITTED] Set onlyImportant=True for gccrust, binutils and gdb schedulers
@ 2022-06-08 20:50 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2022-06-08 20:50 UTC (permalink / raw)
  To: buildbot; +Cc: Mark Wielaard

The gccrust, binutils and gdb schedulers have fileIsImportant filters.
This means a build is only done for changes in "important"
file. Setting onlyImportant=True makes sure that changesets aren't
generated for changes in files that aren't really part of the project.

This is mainly so that a change to e.g. gas will not get added as an
"unimportant" change for gdb. Otherwise when there is a regression the
author of the "unimportant" change will also get a notification.
---
 builder/master.cfg | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/builder/master.cfg b/builder/master.cfg
index b4b42ae..6d52e02 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -404,6 +404,7 @@ gccrust_scheduler = schedulers.SingleBranchScheduler(
         change_filter=util.ChangeFilter(project="gccrust",
                                         branch="master"),
         fileIsImportant=gccrsImportant,
+        onlyImportant=True,
         reason="gccrust project master branch gccrs files update",
         builderNames=["gccrust-fedora-x86_64",
                       "gccrust-debian-i386",
@@ -436,6 +437,7 @@ binutils_scheduler = schedulers.SingleBranchScheduler(
         change_filter=util.ChangeFilter(project="binutils-gdb",
                                         branch="master"),
         fileIsImportant=binutilsImportant,
+        onlyImportant=True,
         reason="binutils-gdb project master branch binutils files update",
         builderNames=["binutils-debian-amd64",
                       "binutils-fedora-x86_64",
@@ -480,6 +482,7 @@ gdb_scheduler = schedulers.SingleBranchScheduler(
         change_filter=util.ChangeFilter(project="binutils-gdb",
                                         branch="master"),
         fileIsImportant=gdbImportant,
+        onlyImportant=True,
         reason="binutils-gdb project master branch gdb files update",
         builderNames=["gdb-centos-x86_64",
                       "gdb-fedora-x86_64",
-- 
2.30.2


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

only message in thread, other threads:[~2022-06-08 20:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-08 20:50 [COMMITTED] Set onlyImportant=True for gccrust, binutils and gdb schedulers 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).