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 95CC8386EC38 for ; Thu, 26 May 2022 08:44:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 95CC8386EC38 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 CE2F81F88B; Thu, 26 May 2022 08:44:46 +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 BAAC113AE3; Thu, 26 May 2022 08:44:46 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id q0iJLP49j2LdCQAAMHmgww (envelope-from ); Thu, 26 May 2022 08:44:46 +0000 Message-ID: Date: Thu, 26 May 2022 10:44:46 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 Subject: Re: [PATCH] Add openSUSE builders. Content-Language: en-US To: Mark Wielaard Cc: overseers@sourceware.org References: <82f57f9255f51dbeb3d7ff425f49a02c23804943.camel@klomp.org> <1a016b65-ba54-5b5e-3024-ec0531db2f52@suse.cz> From: =?UTF-8?Q?Martin_Li=c5=a1ka?= In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, 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:44:49 -0000 On 5/25/22 23:48, Mark Wielaard wrote: > Hi Martin, > > On Wed, May 25, 2022 at 10:01:30PM +0200, Martin Liška wrote: >> Add builders for bzip2 and elfutils. >> >> Let's start with these for testing purpose. I'm going to add others soon.. > > Note you mispelled the container names in the elfutils builders (but > they are correct in the bzip2 builders). Sure, thanks for heads up. > >> +elfutils_opensusetw_x86_64_builder = util.BuilderConfig( >> + name="elfutils-opensusetw-x86_64", >> + properties={'container-file': >> + readContainerFile('opensusetw-latest')}, > > opensuse-tumbleweed > >> + 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')}, > > opensuse-leap > >> + workernames=vm_workers, >> + tags=["elfutils", "opensuseleap", "x86_64"], >> + factory=elfutils_factory_distcheck) >> +c['builders'].append(elfutils_opensuseleap_x86_64_builder) > > Everything else looks correct. Note that I only noticed because I ran > buildbot checkconfig builder locally. Fixed and pushed. > > I added you to the builder group so you can push yourself after the > fix (and please do run checkconfig locally). And so you can help if > anything blows up :) Cool, thanks for the trust. Cheers, Martin > > Cheers, > > Mark