From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 4988339333F8 for ; Wed, 8 Jun 2022 20:50:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4988339333F8 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (deer0x09.wildebeest.org [172.31.17.139]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 256213000B37; Wed, 8 Jun 2022 22:50:46 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id AAA8C2E83DB8; Wed, 8 Jun 2022 22:50:29 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] Set onlyImportant=True for gccrust, binutils and gdb schedulers Date: Wed, 8 Jun 2022 22:50:27 +0200 Message-Id: <20220608205027.677119-1-mark@klomp.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: buildbot@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "The https://builder.sourceware.org/ buildbot" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jun 2022 20:50:48 -0000 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