From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id CDED3A0679 for ; Tue, 2 Apr 2019 14:50:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C2A872B99; Tue, 2 Apr 2019 14:50:59 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 6DFEE2B99 for ; Tue, 2 Apr 2019 14:50:58 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C157F86679; Tue, 2 Apr 2019 12:50:57 +0000 (UTC) Received: from rh.redhat.com (unknown [10.36.118.125]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7F49C17187; Tue, 2 Apr 2019 12:50:45 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org, bluca@debian.org, yskoh@mellanox.com Cc: thomas@monjalon.net, Kevin Traynor Date: Tue, 2 Apr 2019 13:50:20 +0100 Message-Id: <20190402125020.30383-2-ktraynor@redhat.com> In-Reply-To: <20190402125020.30383-1-ktraynor@redhat.com> References: <20190402125020.30383-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Tue, 02 Apr 2019 12:50:57 +0000 (UTC) Subject: [dpdk-stable] [PATCH 2/2] 5-make-release-commit: add validation info to release note X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Signed-off-by: Kevin Traynor --- 5-make-release-commit | 15 +++++++++++---- README | 12 ++++++++++-- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/5-make-release-commit b/5-make-release-commit index 17aa535..84e8a21 100755 --- a/5-make-release-commit +++ b/5-make-release-commit @@ -24,15 +24,22 @@ update_release_note() if [ $RTE_VER_MINOR -eq 1 ]; then echo - echo "Fixes in $RTE_VER_MAJOR Stable Release" - echo "-----------------------------" + echo "Fixes and Validation in $RTE_VER_MAJOR Stable Release" + echo "--------------------------------------------" fi echo - echo "$stable_release" - echo "~~~~~~~" + echo "$stable_release Fixes" + echo "~~~~~~~~~~~~~" echo $GIT log --oneline v${last_release}..HEAD | cut -d ' ' -f 2- | sort | sed 's/^/* /' + echo + echo "$stable_release Validation" + echo "~~~~~~~~~~~~~~~~~~" + echo + + echo "$(cat $stable_release/validation)" + } >> $DPDK_DIR/doc/guides/rel_notes/release_${RTE_VER_MAJOR/./_}.rst } diff --git a/README b/README index 1616fe7..bef3762 100644 --- a/README +++ b/README @@ -117,14 +117,22 @@ email with the notification content. What you need to so it to edit it when necessary (say, leaving more time for review) and send it out. +At this point the vendors who have commited to test the release should do +so and send a report back on what they have tested. 5-make-release-commit ===================== +In order that there will be information about validation of each stable +release in the release notes, add a file called 'validation' in the local +stable release directory created in 0-set-stable-release. In that file +write some notes about the validation that has been performed by the +various vendors. + When all are ready, it's time to make the release commit, which basically does: - change the release version (say from v17.08 to v17.08.1) -- update the release note (with the bug fixing commits listed in the release - note) +- update the release note with the bug fixing commits +- update the release note with the validation from the 'validation' file - commit above changes with a short commit log ("release $stable_release") -- 2.20.1