From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D9A6443B84; Thu, 22 Feb 2024 20:25:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A163E402CD; Thu, 22 Feb 2024 20:25:50 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 36A004027F for ; Thu, 22 Feb 2024 20:25:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1708629948; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=byt64vBMpIITP62646B3WYWjoKhUnnyuNFRLplEseks=; b=Ec0LhO0jrk/T1Bj9l9Bmmz+Vy/3sj0dvGCdCX61/fy12b+QZgTgWOS/mwTPbKB2o6ZAYFK AGNPAsI83FE9Bn/aEi4k+lH/53zHItuQPvWUS642OKaEmzQIqKihlq9tGG9yfFLTf1FTKN KaB+ihiHUnJ0Q3uOmjsp4/anUzydWnc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-653-ZbLg1dCHMuqJVoFvy3AV8A-1; Thu, 22 Feb 2024 14:25:46 -0500 X-MC-Unique: ZbLg1dCHMuqJVoFvy3AV8A-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (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 mimecast-mx02.redhat.com (Postfix) with ESMTPS id 7CC9188CE02; Thu, 22 Feb 2024 19:25:46 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.9.99]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 45A951C060AF; Thu, 22 Feb 2024 19:25:46 +0000 (UTC) From: Aaron Conole To: Adam Hassick Cc: ci@dpdk.org Subject: Re: [PATCH v3 0/3] Add a script to create series artifacts In-Reply-To: <20240118234120.29256-1-ahassick@iol.unh.edu> (Adam Hassick's message of "Thu, 18 Jan 2024 18:41:17 -0500") References: <20240118234120.29256-1-ahassick@iol.unh.edu> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) Date: Thu, 22 Feb 2024 14:25:40 -0500 Message-ID: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.7 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Adam Hassick writes: > The process of applying patches and bundling the source code into an > archive varies across testing labs. Historically, the process for > applying patches at the Community Lab was not visible to the broader > community and was inextricable from lab infrastructure. The new script > introduced in this patch aims to resolve these issues. This script is > intended to serve as a reference process for creating series artifacts. > A "series artifact" is an archive containing a copy of the DPDK source > code with a patch series applied. We perform a test build prior to > creating the archive as well. At the Community Lab, these archives are > used for all of our tests. At the time of writing, this script is being > used in production. > > The script depends on the "pw_maintainers_cli" and patch parser scripts > in the CI repository. It also depends on pygit2 for managing the DPDK > repository, pyyaml for parsing the configuration file, and git_pw for > pulling in the series as a patch file. > > This script does not implement handling of the dependency labels. There > is an ongoing effort to get this implemented into Patchwork as a > feature. > --- Marged - thanks!