diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-09-07 11:01:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 11:01:37 +0300 |
commit | 89b40a5d8d6e37fabee7a436a6b1d494c9b2e1bf (patch) | |
tree | 3d2bee8954080bc3c5ce511428dee8e8c62ce54b /scripts/GeneratePublishReportPart1.py | |
parent | 2618df9617c778bb66de81bec392f44be52a7d45 (diff) | |
download | vaadin-framework-89b40a5d8d6e37fabee7a436a6b1d494c9b2e1bf.tar.gz vaadin-framework-89b40a5d8d6e37fabee7a436a6b1d494c9b2e1bf.zip |
Update build report scripts for 8.2 (#9939)
Diffstat (limited to 'scripts/GeneratePublishReportPart1.py')
-rw-r--r-- | scripts/GeneratePublishReportPart1.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/GeneratePublishReportPart1.py b/scripts/GeneratePublishReportPart1.py index ec510a95be..b6d3cc55c3 100644 --- a/scripts/GeneratePublishReportPart1.py +++ b/scripts/GeneratePublishReportPart1.py @@ -14,8 +14,8 @@ metadataChecks = { 'https://vaadin.com/download/VERSIONS_7': '^7\..*', 'https://vaadin.com/download/release/7.7/LATEST': '^7\..*', 'https://vaadin.com/download/LATEST': '^6\..*', - 'https://vaadin.com/download/LATEST8': '^{ver}' - # 'https://vaadin.com/download/PRERELEASES': '^{ver}' + 'https://vaadin.com/download/LATEST8': '^8\.1\..*', + 'https://vaadin.com/download/PRERELEASES': '^{ver}' } parser = argparse.ArgumentParser(description="Post-publish report generator") @@ -79,13 +79,15 @@ else: content += "<tr><td></td><td><a href=\"https://github.com/vaadin/framework/milestones\">Create milestone for next version in GitHub</a></td></tr>" -content += """ -<tr><td></td><td><a href="http://test.vaadin.com/{version}/run/LabelModes?restartApplication">Verify uploaded to test.vaadin.com</a></td></tr> -""".format(version=args.version) +#content += """ +#<tr><td></td><td><a href="http://test.vaadin.com/{version}/run/LabelModes?restartApplication">Verify uploaded to test.vaadin.com</a></td></tr> +#""".format(version=args.version) if not prerelease: content += '<tr><td></td><td><a href="http://vaadin.com/api">Verify API version list updated</a></td></tr>' +content += "<tr><td></td><td>Run the generated tag_repositories.sh script</td></tr>" + # close GitHub milestone content += "<tr><td></td><td><a href=\"https://github.com/vaadin/framework/milestones\">Close GitHub Milestone</a></td></tr>" |