From patchwork Tue Nov 7 20:31:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aaron Conole X-Patchwork-Id: 371 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D3A0B432CA; Tue, 7 Nov 2023 21:32:01 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CC7CA40698; Tue, 7 Nov 2023 21:32:01 +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 3C3004025E for ; Tue, 7 Nov 2023 21:32:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1699389120; 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: content-transfer-encoding:content-transfer-encoding; bh=wNZ9K9cIpZSK1/DjFppn+80p3dP1sBs0tXuWAPZavxQ=; b=RhnWYbT766q007FNCS3Y8nJVse6ZOfGNNLSb/SBTYqvZdcUtPGERYqurMBkD6ZM4OlKV6D Yz2uxychKZ8QJsaGTpap5Zm/qSR3XdRpR3fwk3Tt96j1xBN9S7TZ9r2dyKnq16WPuLX1hq u1T/DslLcP0cOXT6Hl2yo7l8+N7WRP0= 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-363-L8FlFjlnMFCXaax2Rpq0JA-1; Tue, 07 Nov 2023 15:31:59 -0500 X-MC-Unique: L8FlFjlnMFCXaax2Rpq0JA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (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 07120101A52D; Tue, 7 Nov 2023 20:31:59 +0000 (UTC) Received: from RHTPC1VM0NT.redhat.com (unknown [10.22.33.168]) by smtp.corp.redhat.com (Postfix) with ESMTP id B01C019E93; Tue, 7 Nov 2023 20:31:58 +0000 (UTC) From: Aaron Conole To: ci@dpdk.org Cc: Michael Santana , David Marchand , Thomas Monjalon , Patrick Robb , Dumitru Ceara Subject: [RFC v2 0/3] Add a recheck framework to pw-ci Date: Tue, 7 Nov 2023 15:31:55 -0500 Message-ID: <20231107203158.1261199-1-aconole@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 This allows users to send repsonse emails to patches and force rebuilds of the workflow in github actions. This has been tested with the following: for recheck in $(./recheck_tool --pw-project=dpdk \ --pw-instance=patches.dpdk.org \ --filter=github-robot --state=1 | \ jq -rc '.rechecks[]'); do ./github_restart --pw-project=dpdk --pw-instance=patches.dpdk.org \ --series-id=$(echo "$recheck" | \ jq -rc '.series_id') \ --repository=ovsrobot/dpdk \ --sha=$(echo "$recheck" | jq -rc '.sha') \ --github-token=XXXXXXXX done And succesffully rebuilt 6457922075 from series 29774 which does have a recheck-request (we used the iol-unit-amd64-testing filter to do the test). To be added is a way to filter on specific workflows so we don't restart all workflows associated with the run for those projects which have more than one workflow. This can be combined with a second call of the recheck tool to advance the state. When the series id is provided, the tool will update the gap_sync column for the specific row and future calls to github_monitor script will then scan the new run. Aaron Conole (3): pw_mon: improve command line options recheck: Add a recheck parser for patchwork comments github: add a tool for restarting checks github_restart | 141 +++++++++++++++++++++++++++++++++++++++++++++++ pw_mon | 123 ++++++++++++++++++++++++++++++++++++----- recheck_tool | 100 +++++++++++++++++++++++++++++++++ series_db_lib.sh | 80 ++++++++++++++++++++++++++- 4 files changed, 428 insertions(+), 16 deletions(-) create mode 100755 github_restart create mode 100755 recheck_tool