From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wj0-f174.google.com (mail-wj0-f174.google.com [209.85.210.174]) by dpdk.org (Postfix) with ESMTP id 66DFA567A for ; Thu, 1 Dec 2016 14:45:01 +0100 (CET) Received: by mail-wj0-f174.google.com with SMTP id xy5so204924719wjc.0 for ; Thu, 01 Dec 2016 05:45:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:in-reply-to:references; bh=wrW0ox4CU5jVWD47HYFOmEEitBVT8/fF0h4bK5NrHPQ=; b=akEy9gYppW66XHCE3nm3kqBNHJX79MWqXdZpg4aQFnMDwPqAEIjZ9U0eoi59ZDQgVm pPAreBPrksEv9tD3h/mVwnD3moUoQS3EZ+pZSyNpO0DFny5VNd44FBDg/JUG5OEOoMjO eN4EVSPBY06C7lWsBewP3nuwmUtkYxP4eX7/fwF3oOw7YN+HHvmShLLjGBSsq1wHIZPH ze28Y/MOjW9c+ATJR97gQ9uJ3LtmNGK2bw2WjoiOHjTvC1FUuSPdEwqOlmx/zQuKbJei nl7nm2mgJ7caxwV/JGuEnbZBVXYyxPJGSYlSr5TK79Ojmkl+CdB/IJ6RIpNnU3kE1GeC lnOQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=wrW0ox4CU5jVWD47HYFOmEEitBVT8/fF0h4bK5NrHPQ=; b=Y/0hvq6/59zE2KDSWpkdQqO5/vZj6TJpzt1Dta0aeUcrY9GFD+vdTPY1dZRdYpJKoB sB5a3HUaMfNrcLOePwnkfVpNPt9xybz4AlHLRxL37HygRA0BGzJfrwJzO1o2i9qVOOZx v/leZ0Phrf1D8Nf0sgAgjYuBWOhDtaoVxqhILTp0mv8btaeO+glN15Po3IFapniWhfmo ZMQRhaErBKbk2IQ0HBaKxhnQZSOz4ijws87i5o9L1YJvxnkpBvDvbPIgty71DV46H72x sjyIeBEb1/1QToNWuskMpJgFdc/Er9QomQO80334clpffX+DisdXVHMr0NbBnlYQBa/5 lFBw== X-Gm-Message-State: AKaTC00Rb9XDqrGWZruoSnJcIAi6w4ZLZvt+JYsiHIyHFipREcYRXIX0tza+CrHzwGnO8rVY X-Received: by 10.194.112.196 with SMTP id is4mr38025459wjb.92.1480599900859; Thu, 01 Dec 2016 05:45:00 -0800 (PST) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id c202sm15808333wme.1.2016.12.01.05.44.59 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 01 Dec 2016 05:45:00 -0800 (PST) From: Thomas Monjalon To: ci@dpdk.org Date: Thu, 1 Dec 2016 14:44:45 +0100 Message-Id: <1480599892-14190-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1480093334-29957-1-git-send-email-thomas.monjalon@6wind.com> References: <1480093334-29957-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-ci] [PATCH v2 0/7] first scripts for CI integration X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2016 13:45:01 -0000 These scripts allow to check a patch received by email and send a report in order to be integrated in patchwork. The existing CI tests run by Intel could be converted to use the script send-patch-report.sh so they will be seen in patchwork. Next steps (to be implemented): - script to clean and update a git tree - script to apply a patch on the right tree - script to apply dependencies (preceding in a series) Thomas Monjalon (7): tools: add mail filter tools: add mail parser config: add loader and template tools: add patchwork client tools: add per-patch report mailer tools: add patchwork integration tests: add checkpatch changes in v2: - fix mail parsing (bug with quotes in From:) - fix public success report (no CC:) config/ci.config | 10 + config/pwclientrc | 9 + tests/checkpatch.sh | 42 +++ tools/filter-patch-email.sh | 76 +++++ tools/load-ci-config.sh | 14 + tools/parse-email.sh | 44 +++ tools/pwclient | 808 ++++++++++++++++++++++++++++++++++++++++++++ tools/send-patch-report.sh | 100 ++++++ tools/update-pw.sh | 57 ++++ 9 files changed, 1160 insertions(+) create mode 100644 config/ci.config create mode 100644 config/pwclientrc create mode 100755 tests/checkpatch.sh create mode 100755 tools/filter-patch-email.sh create mode 100644 tools/load-ci-config.sh create mode 100755 tools/parse-email.sh create mode 100755 tools/pwclient create mode 100755 tools/send-patch-report.sh create mode 100755 tools/update-pw.sh -- 2.7.0