From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 91lTKF8RwGPCQhUAWB0awg (envelope-from ) for ; Thu, 12 Jan 2023 08:55:43 -0500 Received: by simark.ca (Postfix, from userid 112) id 919D21E128; Thu, 12 Jan 2023 08:55:43 -0500 (EST) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=olUwok72; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A, RCVD_IN_DNSWL_MED,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 2512A1E112 for ; Thu, 12 Jan 2023 08:55:43 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id B2FB838543A9 for ; Thu, 12 Jan 2023 13:55:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B2FB838543A9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1673531741; bh=/thMXJak7wObQi+HyUidZBCzH9WdLwixStD63OWuFyM=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=olUwok72cXxi3E2K4BAM8vzGCcXL9mZLGyMJcHgO12XKwUAWRfFBupi8vB54JrwHj 5aYl95TCXdFSZzD1lt+T84nWvK9VZAOdgdlCW51g9MIb8jnYmQUM6v3R0fx98Eh9js fxQm1TrhhxriOil46xaJ4sML2t2947TYt6QMv7n4= 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 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) 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: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb Reply-To: Simon Marchi Errors-To: gdb-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb" 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