From patchwork Mon Mar 18 10:04:05 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Szabolcs Nagy X-Patchwork-Id: 31878 Received: (qmail 110881 invoked by alias); 18 Mar 2019 10:04:12 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 110809 invoked by uid 89); 18 Mar 2019 10:04:11 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-14.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.1 spammy=HAccept-Language:en-GB, H*c:HHH X-HELO: EUR03-AM5-obe.outbound.protection.outlook.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=6Ah9/fgtDpqjQclD7y4D8ulfCtvjFOxLXQgRUbeHWhc=; b=hr0aPVsxM/9Mo+Cbkol1qwMRMX2QYUxcwuA3pPTUKYf+5bPlJc+tiuW6rCVPixPfI6H1po8DhwWRiE4gK2qMYX1E0+cecVYzlq5Fc4ID3nJo0YRJICvP9WGGa8pCx7P7jFw+XU9i8TiD7t7gG3VSYDP62+wmvuWdJmOze98Eg/Q= From: Szabolcs Nagy To: Tulio Magno Quites Machado Filho , GNU C Library CC: nd Subject: Re: [PATCH buildbot] Add hi1616-ubunut-{aarch64,armhf} builders Date: Mon, 18 Mar 2019 10:04:05 +0000 Message-ID: <95e18ced-2a8b-0b92-15c8-67cca7bab431@arm.com> References: <776e01b7-cf91-5269-3671-a0b3f8f75111@arm.com> <87imwlkz82.fsf@linux.ibm.com> In-Reply-To: <87imwlkz82.fsf@linux.ibm.com> user-agent: Mozilla/5.0 (X11; Linux aarch64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 authentication-results: spf=none (sender IP is ) smtp.mailfrom=Szabolcs.Nagy@arm.com; received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) x-ms-exchange-senderadcheck: 1 MIME-Version: 1.0 X-MS-Exchange-CrossTenant-mailboxtype: HOSTED On 14/03/2019 19:55, Tulio Magno Quites Machado Filho wrote: > Szabolcs Nagy writes: > >> On 01/03/2019 15:21, Szabolcs Nagy wrote: >>> i plan to commit this next week. >> >> i committed the config changes, >> can you restart the buildbot server? > > Done! > > The new builder appeared and is waiting for the connection of the slave. sorry i made a configuration mistake, so the armhf builder does not work. now i committed the attached patch, so it should work after another restart. From ffa8025b78d38090206e925bf396a1a154c65b2e Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Fri, 15 Mar 2019 12:02:17 +0000 Subject: [PATCH] Explicitly pass the build triplet to the armhf builder the armhf builder runs on an aarch64 machine, so we have to set the build triplet explicitly as config.guess gets it wrong, even though the userspace root fs is armhf. --- scripts/slave/buildbot_selector.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/slave/buildbot_selector.py b/scripts/slave/buildbot_selector.py index 795bcdd..2b92c35 100755 --- a/scripts/slave/buildbot_selector.py +++ b/scripts/slave/buildbot_selector.py @@ -31,7 +31,9 @@ BOT_ASSIGNMENT = { 'glibc-aarch64-linux': bash('glibc-native.sh', [ '--enable-tunables' ]), - 'glibc-armhf-linux': bash('glibc-native.sh'), + 'glibc-armhf-linux': bash('glibc-native.sh', [ + '--build=arm-linux-gnueabihf', + ]), } BOT_ADDITIONAL_ENV = { -- 2.17.1