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 708613858D28 for ; Wed, 6 Jul 2022 20:20:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 708613858D28 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 (deer0x0e.wildebeest.org [172.31.17.144]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 49486302AB2C; Wed, 6 Jul 2022 22:20:45 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id B9A9B2E832E6; Wed, 6 Jul 2022 22:20:44 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: will schmidt , Carl Love , Mark Wielaard Subject: [PATCH] Add ibm power 8, 9 and 10 workers Date: Wed, 6 Jul 2022 22:20:36 +0200 Message-Id: <20220706202036.22090-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.6 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, 06 Jul 2022 20:20:48 -0000 Just the definition of the workers, not yet hooked up to builders. Added samples to buildbot.config.sample. --- buildbot.config.sample | 3 +++ builder/master.cfg | 24 ++++++++++++++++++++++++ htdocs/index.html.post | 1 + 3 files changed, 28 insertions(+) diff --git a/buildbot.config.sample b/buildbot.config.sample index deba731..8cd1b21 100644 --- a/buildbot.config.sample +++ b/buildbot.config.sample @@ -13,6 +13,9 @@ fedora-s390x=frob fedora-ppc64le=frob debian-ppc64=frob fedrawhide-x86_64=frob +ibm_power8=frob +ibm_power9=frob +ibm_power10=frob # Users bb_admin=frob diff --git a/builder/master.cfg b/builder/master.cfg index 19e8d1b..d589db8 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -167,6 +167,30 @@ c['workers'].append(bb3_worker) vm_workers = ['bb1', 'bb2', 'bb3'] +ibm_power8_worker = worker.Worker("ibm_power8", + getpw("ibm_power8"), + max_builds=2, + properties={'ncpus': 8, 'maxcpus': 16}, + notify_on_missing=['will_schmidt@vnet.ibm.com', + 'cel@us.ibm.com']); +c['workers'].append(ibm_power8_worker) + +ibm_power9_worker = worker.Worker("ibm_power9", + getpw("ibm_power9"), + max_builds=2, + properties={'ncpus': 4, 'maxcpus': 8}, + notify_on_missing=['will_schmidt@vnet.ibm.com', + 'cel@us.ibm.com']); +c['workers'].append(ibm_power9_worker) + +ibm_power10_worker = worker.Worker("ibm_power10", + getpw("ibm_power10"), + max_builds=5, + properties={'ncpus': 16, 'maxcpus': 32}, + notify_on_missing=['will_schmidt@vnet.ibm.com', + 'cel@us.ibm.com']); +c['workers'].append(ibm_power10_worker) + # 'protocols' contains information about protocols which master will use for # communicating with workers. You must define at least 'port' option that workers # could connect to your master with this protocol. diff --git a/htdocs/index.html.post b/htdocs/index.html.post index 84d21c1..de93f63 100644 --- a/htdocs/index.html.post +++ b/htdocs/index.html.post @@ -10,6 +10,7 @@
  • Mark Wielaard for the centos-x86_64, debian-i386, debian-arm64 and debian-armhf workers
  • Frank Eigler for the fedrawhide-x86_64 worker
  • +
  • IBM for the ibm_power8, ibm_power9 and ibm_power10 workers
  • -- 2.30.2