diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-08-10 11:52:07 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-08-12 15:52:50 +0300 |
commit | bb87c5c3339b5b7ce926829047582889ac1eb87c (patch) | |
tree | 2ef3f7865bba6b027f17c33e1cdf45540faedf0d /scripts | |
parent | 3e6c07b654656632b5b785966783f139c046d9b3 (diff) | |
download | vaadin-framework-bb87c5c3339b5b7ce926829047582889ac1eb87c.tar.gz vaadin-framework-bb87c5c3339b5b7ce926829047582889ac1eb87c.zip |
Add missing URLs to staging report
This adds a new command line parameter for TestBench API build
Change-Id: I78b916bf59da1267e31ed522ee9c4bdf47800d45
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/GenerateStagingReport.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/GenerateStagingReport.py b/scripts/GenerateStagingReport.py index fad66b993f..23977aa933 100644 --- a/scripts/GenerateStagingReport.py +++ b/scripts/GenerateStagingReport.py @@ -9,6 +9,7 @@ parser.add_argument("version", type=str, help="Vaadin version that was just buil parser.add_argument("deployUrl", type=str, help="Base url of the deployment server") parser.add_argument("buildResultUrl", type=str, help="URL for the build result page") parser.add_argument("stagingRepo", type=str, help="URL for the staging repository") +parser.add_argument("tbapiUrl", type=str, help="URL for the TestBench API build") args = parser.parse_args() @@ -35,7 +36,8 @@ content += cgi.escape(""" <ibiblio name="vaadin-staging" usepoms="true" m2compat root="{repoUrl}" />""".format(repoUrl=args.stagingRepo)) content += """</pre> </td></tr> -<tr><td><a href="https://dev.vaadin.com/milestone/Vaadin {version}">Trac Milestone</a></td></tr> +<tr><td><a href="https://dev.vaadin.com/milestone/Vaadin {version}">Close Trac Milestone</a></td></tr> +<tr><td><a href="https://dev.vaadin.com/query?status=pending-release&component=Core+Framework&resolution=fixed&col=id&col=summary&col=component&col=milestone&col=status&col=type">Verify pending release tickets still have milestone {version}</a></td></tr> <tr><td><a href="https://dev.vaadin.com/admin/ticket/versions">Add version {version} to Trac</td></tr> <tr><td><a href="{url}">Staging result page (See test results, pin and tag build and dependencies)</a></td></tr> <tr><td>Commands to tag all repositories (warning: do not run as a single script but set variables and check before any push commands - this has not been tested yet and the change IDs are missing)</td></tr> @@ -72,9 +74,10 @@ git tag -a -m"$VERSION" $VERSION $PLUGIN_REVISION git push --tags cd .. </pre></td></tr> +<tr><td><a href="{tbapi}">Build and publish TestBench API for version {version} if proceeding</a></td></tr> </table> </body> -</html>""".format(url=args.buildResultUrl, repoUrl=args.stagingRepo, version=args.version) +</html>""".format(url=args.buildResultUrl, repoUrl=args.stagingRepo, version=args.version, tbapi=args.tbapiUrl) f = open("result/report.html", 'w') f.write(content) |