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 B0CA33815FED for ; Mon, 30 May 2022 07:57:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B0CA33815FED Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz 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 AAC3B21B93; Mon, 30 May 2022 07:57:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1653897473; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Ooc/7nuVLsHvtkADc+A878sNQmGRUEDB7PQ2vlWbUzQ=; b=c2om1IaUDXUV327QxnHDoTTAQiXUAKcktEK5RZwJxaPCoHon3ci/VgYwqwUiZKYYwcIfrc SiBflu0V1IJocubT70EmUHi4sFLpuCBE8PciVzdwxqpeWOhUV+BdIR2BxXyhXMGJhei5aG 85o3HTe+2NK9o9371slb/dOXFPIC9R4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1653897473; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=Ooc/7nuVLsHvtkADc+A878sNQmGRUEDB7PQ2vlWbUzQ=; b=YDVrR9LsWwCW45PE7/GB6mlVVDZZ2m0XMdzLfaUN70UKFEy9n3r+VJdGo2p9nzOCrVQRic V9LySD7bvGNBotBQ== 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 9950413AFD; Mon, 30 May 2022 07:57:53 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id pWNbJAF5lGKvBAAAMHmgww (envelope-from ); Mon, 30 May 2022 07:57:53 +0000 Message-ID: Date: Mon, 30 May 2022 09:57:53 +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 gccrust for openSUSE containers. To: buildbot@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: 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: Mon, 30 May 2022 07:57:55 -0000 Ready to be installed? Thanks, Martin --- builder/master.cfg | 22 +++++++++++++++++++++- htdocs/index.html | 4 ++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/builder/master.cfg b/builder/master.cfg index 473743f..0c270f5 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -410,7 +410,9 @@ gccrust_scheduler = schedulers.SingleBranchScheduler( # "gccrust-debian-arm64", "gccrust-fedora-ppc64le", "gccrust-fedora-s390x", - "gccrust-debian-ppc64"]) + "gccrust-debian-ppc64", + "gccrust-opensusetw-x86_64", + "gccrust-opensuseleap-x86_64"]) c['schedulers'].append(gccrust_scheduler) # Only trigger scheduler for changes to binutils (or deps) @@ -1254,6 +1256,24 @@ gccrust_debian_ppc64_builder = util.BuilderConfig( factory=gccrust_factory) c['builders'].append(gccrust_debian_ppc64_builder) +gccrust_opensusetw_x86_64_builder = util.BuilderConfig( + name="gccrust-opensusetw-x86_64", + properties={'container-file': + readContainerFile('opensuse-tumbleweed')}, + workernames=vm_workers, + tags=["gccrust", "opensusetw", "x86_64"], + factory=gccrust_factory) +c['builders'].append(gccrust_opensusetw_x86_64_builder) + +gccrust_opensuseleap_x86_64_builder = util.BuilderConfig( + name="gccrust-opensuseleap-x86_64", + properties={'container-file': + readContainerFile('opensuse-leap')}, + workernames=vm_workers, + tags=["gccrust", "opensuseleap", "x86_64"], + factory=gccrust_factory) +c['builders'].append(gccrust_opensuseleap_x86_64_builder) + # binutils build steps, factory and builders binutils_step_git = steps.Git( diff --git a/htdocs/index.html b/htdocs/index.html index a4458c8..b489fb5 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -168,6 +168,10 @@ fedora-ppc64le
+ opensusetw-x86_64
+
+ opensuseleap-x86_64
+
gdb -- 2.36.1