Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1691)

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 23537061: Add links to results.html, zip file for Android layout test results. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: de-dup props Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_device_steps.py
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py
index 99d61fa55d4c7de3da5a1c78be4a3b7932ba3baa..253606792a091889ee7c934b752dd1d3e63a7bd1 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -250,13 +250,22 @@ def RunWebkitLayoutTests(options):
if options.factory_properties.get('archive_webkit_results', False):
bb_annotations.PrintNamedStep('archive_webkit_results')
+ base = 'https://storage.googleapis.com/chromium-layout-test-archives'
+ builder_name = options.build_properties.get('buildername', '')
+ build_number = str(options.build_properties.get('buildnumber', ''))
+ bb_annotations.PrintLink('results',
+ '%s/%s/%s/layout-test-results/results.html' % (base, builder_name,
+ build_number))
+ bb_annotations.PrintLink('(zip)',
+ '%s/%s/%s/layout-test-results.zip' % (base, builder_name,
+ build_number))
gs_bucket = 'gs://chromium-layout-test-archives'
RunCmd([os.path.join(SLAVE_SCRIPTS_DIR, 'chromium',
'archive_layout_test_results.py'),
'--results-dir', '../../layout-test-results',
'--build-dir', CHROME_OUT_DIR,
- '--build-number', str(options.build_properties.get('buildnumber', '')),
- '--builder-name', options.build_properties.get('buildername', ''),
+ '--build-number', build_number,
+ '--builder-name', builder_name,
'--gs-bucket', gs_bucket])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698