From 60c8578accc063e5c607195007c5729abfcbc3d3 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Fri, 8 Sep 2017 15:54:48 +0300 Subject: [PATCH] Update release publishing scripts (#9947) * Remove version from URL in publish script. Otherwise, Chrome can cache the failure too aggressively. * Move mention of creating new milestone to earlier report. * Add mention of preparing release notes earlier. --- scripts/GeneratePostPublishReport.py | 5 +---- scripts/GeneratePublishReportPart1.py | 9 ++++++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/GeneratePostPublishReport.py b/scripts/GeneratePostPublishReport.py index 4ebcbfd626..4b11daf754 100644 --- a/scripts/GeneratePostPublishReport.py +++ b/scripts/GeneratePostPublishReport.py @@ -53,9 +53,6 @@ if prerelease: content += createTableRow("", "Optionally check that old Eclipse metadata still refers to Vaadin 7") content += createTableRow("", "Note that archetype metadata checks do not verify that the relevant sections are not commented out when changing from pre-release to stable and back!") -# GitHub milestones -content += createTableRow("", "Create new milestone in GitHub") - content += createTableRow("", "Build and deploy new sampler if necessary") # Inform marketing and PO @@ -65,7 +62,7 @@ content += createTableRow("", "Inform marketing and PO about the release") content += createTableRow("", "Update vaadin.version.latest and vaadin.version.next parameters in TeamCity".format(args.teamcityUrl, args.projectId)) # Link to GH release notes -content += createTableRow("", "Write release notes in GH") +content += createTableRow("", "Finish and publish release notes in GH") content += "" diff --git a/scripts/GeneratePublishReportPart1.py b/scripts/GeneratePublishReportPart1.py index b6d3cc55c3..37b2f8e409 100644 --- a/scripts/GeneratePublishReportPart1.py +++ b/scripts/GeneratePublishReportPart1.py @@ -71,10 +71,10 @@ content = """ mavenUrl = "" if not prerelease: - mavenUrl = "http://repo1.maven.org/maven2/com/vaadin/vaadin-server/{ver}".format(ver=args.version) + mavenUrl = "http://repo1.maven.org/maven2/com/vaadin/vaadin-server/" content += "Check {ver} is published to maven.org (might take a while)".format(ver=args.version, mvnUrl=mavenUrl) else: - mavenUrl = "http://maven.vaadin.com/vaadin-prereleases/com/vaadin/vaadin-server/{ver}".format(ver=args.version) + mavenUrl = "http://maven.vaadin.com/vaadin-prereleases/com/vaadin/vaadin-server/" content += "Check {ver} is published as prerelease to maven.vaadin.com".format(ver=args.version, mvnUrl=mavenUrl) content += "Create milestone for next version in GitHub" @@ -89,7 +89,10 @@ if not prerelease: content += "Run the generated tag_repositories.sh script" # close GitHub milestone -content += "Close GitHub Milestone" +content += "Close GitHub Milestone and create one for next version" + +# release notes +content += "Prepare release notes in GH" content += """

Start Post-Publish Release from dependencies tab -- 2.39.5