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 976AF45A7E; Tue, 1 Oct 2024 19:09:09 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 92A204027E; Tue, 1 Oct 2024 19:09:09 +0200 (CEST) Received: from mail-qt1-f179.google.com (mail-qt1-f179.google.com [209.85.160.179]) by mails.dpdk.org (Postfix) with ESMTP id 7F7DB40273 for ; Tue, 1 Oct 2024 19:09:08 +0200 (CEST) Received: by mail-qt1-f179.google.com with SMTP id d75a77b69052e-4582a0b438aso45737021cf.0 for ; Tue, 01 Oct 2024 10:09:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1727802548; x=1728407348; darn=dpdk.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=M+9+FnIh/k/Ly0v7qVNmfWWYWBVimMFNRwfuyp/b+Bc=; b=RHOcuMCWaggF8D1TMCJ6QuK5EQ2KUwuipNU7icTrgNiZOBTRj8ftJzyDUVk86bpeJA wGdv1RNcDp8ILEmf4xKwB5ywrgz8yvVMA0IKCboDOijBa9ADTYJ+tmRsed4DJv9betdH x1A7pPm8g4pkNe7M7B4w34xNMOTKAFOlMOHtk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1727802548; x=1728407348; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=M+9+FnIh/k/Ly0v7qVNmfWWYWBVimMFNRwfuyp/b+Bc=; b=d1BSEWMCzZGaHApz6kedlvjvZacrWCREvSRSfNRY59XRhRYG47Nur+bcoY1S7GxPrg vrTsgFml19egN8ZexzZfFzSP2lVLouCtaaa6QYeMVs2BihfHFMP3txGraS+kKReurKXZ a7eeHE79BQ1AeL4z3bD5VYW3mMSBq0DbTSakDbZVqfkFQFN5cISXb+Uat89rbSALyOd8 5oFyz+WWNIJcGb3Nw7W7smQKTVDbJqcgAGZrZyWfyHAY3oZosvFS4WkQmov0RdVN7Hke OYpP4qYzujnBYL534MLR7wqAE5bAFR4wpsSu1u7Gj3UmyUVorAAiZWH9zTiFDrfzdold GZzg== X-Gm-Message-State: AOJu0YzpcxfQaolN3Ewluq64WSvVcek5Wz2waRM4USwnrqdTYjlBCkwa i04gLWZY+/QqK6Ky/hch7OXUrpT4zBB0FyEau9wvjoWUtFRMbuhwNx0IuKhlrx9MhHW5r3SIbf+ FBInZXbnq26MaF14h41Izp+37lV8B6xL1Zb1gBJB86AvzOaLPrIkVaSBQaSfbyFAXRvGsgY4mge iFNNxtnPuhtRUcnFJ6XptTcDH90v2i X-Google-Smtp-Source: AGHT+IGJyzCLspRE/EkbVuOYPIy1aOMoSFO4I82VYxM1twC5f00OT7X9VFto9es6CWoo5MAdqABHnA== X-Received: by 2002:a05:6214:5901:b0:6cb:52dd:44cd with SMTP id 6a1803df08f44-6cb81a10f3cmr2801346d6.25.1727802547522; Tue, 01 Oct 2024 10:09:07 -0700 (PDT) Received: from localhost.unh.edu (targon.iol.unh.edu. [132.177.125.242]) by smtp.gmail.com with ESMTPSA id 6a1803df08f44-6cb3b67f247sm51178156d6.107.2024.10.01.10.09.06 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 01 Oct 2024 10:09:07 -0700 (PDT) From: Manit Mahajan To: ci@dpdk.org Cc: probb@iol.unh.edu, alialnu@nvidia.com, aconole@redhat.com, Manit Mahajan Subject: [PATCH] config: adding dts tag for dts path patches Date: Tue, 1 Oct 2024 13:07:03 -0400 Message-ID: <20241001170703.30348-1-mmahajan@iol.unh.edu> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 DTS provides a check-format script which runs a series of code quality checks including formatting, linting, and type-checking using the following tools: black, isort, pylama, and mypy. Developers are supposed to run this script before submitting their patch series. In CI testing, we want to run this formatting script on all patches which modify dpdk/dts/* going forward, and submit a new patchwork check named dts-check-format. In order to do this, we need to be able to set a tag in the patch parser script for all patch series which meet this condition. This series adds the dts tag and path assignment to config/patch_parser.cfg. Signed-off-by: Manit Mahajan --- config/patch_parser.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/patch_parser.cfg b/config/patch_parser.cfg index 5757f9a..dac3b23 100644 --- a/config/patch_parser.cfg +++ b/config/patch_parser.cfg @@ -13,6 +13,7 @@ app = application license = documentation VERSION = documentation build = core +dts = dts # This is an ordered list of the importance of each patch classification. # It should be used to determine which classification to use on tools which @@ -22,4 +23,5 @@ priority_list = core, driver, application, - documentation + documentation, + dts -- 2.41.0