From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 3C47F3858C66 for ; Thu, 12 Jan 2023 13:55:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 3C47F3858C66 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca Received: from [10.0.0.11] (unknown [217.28.27.60]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id C47C41E112; Thu, 12 Jan 2023 08:55:14 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1673531715; bh=H2WIm6a5PWrf4jVNLsCL81lumcmR6X8w4oYUlTC8NEc=; h=Date:Subject:To:References:From:In-Reply-To:From; b=Lh6w+1t6ySsp2M51FIjx8VoqmI94AMW/g/Ao+JrKJC65KjpS0pe0ncJZ2Ff0ixNMm D1Ja3A1SCu9BK5fFVmNcLzV8KMfgRSsbRqgXvVL5z5IpjXZUHvqjAKbAwEPXkPF8Kq XdAPeliTY0ZG/Q5qQyNlLBte+UJMT+w7OXQSdKcc= Message-ID: Date: Thu, 12 Jan 2023 08:55:14 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: CI scripts Content-Language: en-US To: Jan Vrany , GDB mailing list References: From: Simon Marchi In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 1/12/23 07:56, Jan Vrany via Gdb wrote: > Hi Simon, > > about a month ago when you helped me with use-after-free fix > you wrote: > >> I ran the patch through my CI job, looks good. > > I'm wondering whether the CI scripts for your job are available? > I'd like to setup a similar job on my CI to avoid similar problems > in future. > > I'm especially interested in "configure ..." and "make check ..." > commands. > > Thanks! > > Jan > Hi Jan, Yes, it's on Jenkins, the job description (it uses Jenkins Job Builder) is here: https://github.com/simark/lttng-ci/blob/master/jobs/binutils-gdb.yaml The build script is runs is here (which is where the commands you are intereted in are): https://github.com/simark/lttng-ci/blob/master/scripts/binutils-gdb/build.sh The job itself is hosted here: https://ci.lttng.org/view/GDB/job/binutils-gdb_master_linuxbuild/ It's hosted on my employer's infrastructure, hence why it's on the LTTng CI. It was green for a while (I filter out pre-existing known failures / flaky tests in the testsuite, hoping to fix those little by little). I usually try to keep it that way by catching regressions early and notifying people, but it got broken by various commits during the holidays, so I have to play catch up now. Simon