From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id E95C5385624D for ; Wed, 25 May 2022 20:01:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org E95C5385624D 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-out1.suse.de (Postfix) with ESMTPS id D3488219D6; Wed, 25 May 2022 20:01:31 +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 BD3A813ADF; Wed, 25 May 2022 20:01:31 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id nHv1LBuLjmKidQAAMHmgww (envelope-from ); Wed, 25 May 2022 20:01:31 +0000 Message-ID: <1a016b65-ba54-5b5e-3024-ec0531db2f52@suse.cz> Date: Wed, 25 May 2022 22:01:30 +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] Add openSUSE builders. To: overseers@sourceware.org References: <82f57f9255f51dbeb3d7ff425f49a02c23804943.camel@klomp.org> Content-Language: en-US Cc: Mark Wielaard In-Reply-To: <82f57f9255f51dbeb3d7ff425f49a02c23804943.camel@klomp.org> 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: Wed, 25 May 2022 20:01:34 -0000 Hi. Add builders for bzip2 and elfutils. Let's start with these for testing purpose. I'm going to add others soon.. Cheers, Martin --- 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 4fabce7..26f57c2 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -293,7 +293,9 @@ elfutils_scheduler = schedulers.SingleBranchScheduler( "elfutils-debian-armhf", "elfutils-fedora-s390x", "elfutils-debian-ppc64", - "elfutils-fedora-ppc64le"]) + "elfutils-fedora-ppc64le", + "elfutils-opensusetw-x86_64", + "elfutils-opensuseleap-x86_64"]) c['schedulers'].append(elfutils_scheduler) libabigail_scheduler = schedulers.SingleBranchScheduler( @@ -341,7 +343,9 @@ bzip2_scheduler = schedulers.SingleBranchScheduler( "bzip2-debian-armhf", "bzip2-fedora-s390x", "bzip2-debian-ppc64", - "bzip2-fedora-ppc64le"]) + "bzip2-fedora-ppc64le", + "bzip2-opensusetw-x86_64", + "bzip2-opensuseleap-x86_64"]) c['schedulers'].append(bzip2_scheduler) valgrind_scheduler = schedulers.SingleBranchScheduler( @@ -675,6 +679,24 @@ bzip2_debian_amd64_builder = util.BuilderConfig( factory=bzip2_factory_no_valgrind) c['builders'].append(bzip2_debian_amd64_builder) +bzip2_opensusetw_x86_64_builder = util.BuilderConfig( + name="bzip2-opensusetw-x86_64", + properties={'container-file': + readContainerFile('opensuse-tumbleweed')}, + workernames=vm_workers, + tags=["bzip2", "opensusetw", "x86_64"], + factory=bzip2_factory) +c['builders'].append(bzip2_opensusetw_x86_64_builder) + +bzip2_opensuseleap_x86_64_builder = util.BuilderConfig( + name="bzip2-opensuseleap-x86_64", + properties={'container-file': + readContainerFile('opensuse-leap')}, + workernames=vm_workers, + tags=["bzip2", "opensuseleap", "x86_64"], + factory=bzip2_factory) +c['builders'].append(bzip2_opensuseleap_x86_64_builder) + bzip2_debian_armhf_builder = util.BuilderConfig( name="bzip2-debian-armhf", workernames=["debian-armhf"], @@ -1033,6 +1055,24 @@ elfutils_debian_amd64_builder = util.BuilderConfig( factory=elfutils_factory_mvu) c['builders'].append(elfutils_debian_amd64_builder) +elfutils_opensusetw_x86_64_builder = util.BuilderConfig( + name="elfutils-opensusetw-x86_64", + properties={'container-file': + readContainerFile('opensusetw-latest')}, + workernames=vm_workers, + tags=["elfutils", "opensusetw", "x86_64"], + factory=elfutils_factory_distcheck) +c['builders'].append(elfutils_opensusetw_x86_64_builder) + +elfutils_opensuseleap_x86_64_builder = util.BuilderConfig( + name="elfutils-opensuseleap-x86_64", + properties={'container-file': + readContainerFile('opensuseleap-latest')}, + workernames=vm_workers, + tags=["elfutils", "opensuseleap", "x86_64"], + factory=elfutils_factory_distcheck) +c['builders'].append(elfutils_opensuseleap_x86_64_builder) + elfutils_debian_armhf_builder = util.BuilderConfig( name="elfutils-debian-armhf", workernames=["debian-armhf"], diff --git a/htdocs/index.html b/htdocs/index.html index 9d9d723..6a87be6 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -68,6 +68,10 @@ fedora-ppc64le
+ opensusetw-x86_64
+
+ opensuseleap-x86_64
+
debugedit @@ -131,6 +135,10 @@ fedora-ppc64le
+ opensusetw-x86_64
+
+ opensuseleap-x86_64
+
gccrust -- 2.36.1