From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id D53A7386EC38 for ; Thu, 26 May 2022 08:43:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D53A7386EC38 Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id D2E3D1F37D; Thu, 26 May 2022 08:43:36 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id BF90313AE3; Thu, 26 May 2022 08:43:36 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 1qe7Lbg9j2JCCQAAMHmgww (envelope-from ); Thu, 26 May 2022 08:43:36 +0000 Message-ID: Date: Thu, 26 May 2022 10:41:44 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH] Enable openSUSE builders for gdb and binutils. To: overseers@sourceware.org Content-Language: en-US Cc: Mark Wielaard Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, 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: overseers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Overseers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 May 2022 08:43:39 -0000 --- builder/master.cfg | 44 ++++++++++++++++++++++++++++++++++++++++++-- htdocs/index.html | 8 ++++++++ 2 files changed, 50 insertions(+), 2 deletions(-) diff --git a/builder/master.cfg b/builder/master.cfg index 4e6be9a..7ab24ed 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -433,7 +433,9 @@ binutils_scheduler = schedulers.SingleBranchScheduler( "binutils-debian-ppc64", "binutils-debian-armhf", "binutils-debian-arm64", - "binutils-fedora-ppc64le"]) + "binutils-fedora-ppc64le", + "binutils-opensusetw-x86_64", + "binutils-opensuseleap-x86_64"]) c['schedulers'].append(binutils_scheduler) # Only trigger scheduler for changes to gdb (or deps) @@ -475,7 +477,9 @@ gdb_scheduler = schedulers.SingleBranchScheduler( "gdb-debian-arm64", "gdb-fedora-s390x", "gdb-debian-ppc64", - "gdb-fedora-ppc64le"]) + "gdb-fedora-ppc64le", + "gdb-opensusetw-x86_64", + "gdb-opensuseleap-x86_64"]) c['schedulers'].append(gdb_scheduler) # A scheduler for everything binutils-gdb & gcc without filters @@ -1319,6 +1323,24 @@ binutils_fedora_ppc64le_builder = util.BuilderConfig( factory=binutils_factory) c['builders'].append(binutils_fedora_ppc64le_builder) +binutils_opensusetw_x86_64_builder = util.BuilderConfig( + name="binutils-opensusetw-x86_64", + properties={'container-file': + readContainerFile('opensuse-tumbleweed')}, + workernames=vm_workers, + tags=["binutils", "opensusetw", "x86_64"], + factory=binutils_factory_target_all) +c['builders'].append(binutils_opensusetw_x86_64_builder) + +binutils_opensuseleap_x86_64_builder = util.BuilderConfig( + name="binutils-opensuseleap-x86_64", + properties={'container-file': + readContainerFile('opensuse-leap')}, + workernames=vm_workers, + tags=["binutils", "opensuseleap", "x86_64"], + factory=binutils_factory_target_all) +c['builders'].append(binutils_opensuseleap_x86_64_builder) + # gdb build steps, factory and builders gdb_git_step = steps.Git( @@ -1425,6 +1447,24 @@ gdb_fedora_ppc64le_builder = util.BuilderConfig( factory=gdb_factory) c['builders'].append(gdb_fedora_ppc64le_builder) +gdb_opensusetw_x86_64_builder = util.BuilderConfig( + name="gdb-opensusetw-x86_64", + properties={'container-file': + readContainerFile('opensuse-tumbleweed')}, + workernames=vm_workers, + tags=["gdb", "opensusetw", "x86_64"], + factory=gdb_factory) +c['builders'].append(gdb_opensusetw_x86_64_builder) + +gdb_opensuseleap_x86_64_builder = util.BuilderConfig( + name="gdb-opensuseleap-x86_64", + properties={'container-file': + readContainerFile('opensuse-leap')}, + workernames=vm_workers, + tags=["gdb", "opensuseleap", "x86_64"], + factory=gdb_factory) +c['builders'].append(gdb_opensuseleap_x86_64_builder) + # binutils-gdb build steps, factory and builders # just a native build diff --git a/htdocs/index.html b/htdocs/index.html index 6a87be6..3dbb0ac 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -47,6 +47,10 @@ fedora-ppc64le
+ opensusetw-x86_64
+
+ opensuseleap-x86_64
+
bzip2 @@ -173,6 +177,10 @@ fedora-ppc64le
+ opensusetw-x86_64
+
+ opensuseleap-x86_64
+
libabigail -- 2.36.1