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

Side by Side Diff: scripts/slave/recipes/chromium.py

Issue 2207263002: Add logcats link in builbot page for android swarming tasks (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 DEPS = [ 5 DEPS = [
6 'adb', 6 'adb',
7 'bisect_tester', 7 'bisect_tester',
8 'depot_tools/bot_update', 8 'depot_tools/bot_update',
9 'chromium', 9 'chromium',
10 'chromium_android', 10 'chromium_android',
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 ], 978 ],
979 'override_isolate_target': 'chrome_public_test_apk', 979 'override_isolate_target': 'chrome_public_test_apk',
980 } 980 }
981 ], 981 ],
982 }, 982 },
983 }) 983 })
984 ) 984 )
985 ) 985 )
986 986
987 yield ( 987 yield (
988 api.test('dynamic_swarmed_gn_instrumentation_test_trigger') +
989 api.properties.generic(mastername='chromium.linux',
990 buildername='Android Tests',
991 parent_buildername='Android Builder') +
992 api.properties(swarm_hashes={
993 'chrome_public_test_apk': 'llllllllllllllllll',
994 }) +
995 api.override_step_data(
996 'read test spec (chromium.linux.json)',
997 api.json.output({
998 'Android Tests': {
999 'gtest_tests': [
1000 {
1001 'test': 'chrome_public_test_apk',
1002 'swarming': {
1003 'can_use_on_swarming_builders': True,
1004 'dimension_sets': [
1005 {
1006 'build.id': 'KTU84P',
1007 'product.board': 'hammerhead',
1008 },
1009 ],
1010 'cipd_packages': [
1011 {
1012 'location': '{$HOME}/logdog',
1013 'cipd_package': 'infra/logdog/linux-386',
1014 'revision': 'git_revision:deadbeef',
1015 },
1016 ],
1017 },
1018 'override_compile_targets': [
1019 'chrome_public_test_apk'
1020 ],
1021 'override_isolate_target': 'chrome_public_test_apk',
1022 }
1023 ],
1024 },
1025 })
1026 )
1027 )
1028 yield (
988 api.test('dynamic_instrumentation_cloud_test') + 1029 api.test('dynamic_instrumentation_cloud_test') +
989 api.properties.generic(mastername='chromium.fyi', 1030 api.properties.generic(mastername='chromium.fyi',
990 buildername='Android Cloud Tests', 1031 buildername='Android Cloud Tests',
991 parent_buildername='Android Builder') + 1032 parent_buildername='Android Builder') +
992 api.override_step_data( 1033 api.override_step_data(
993 'read test spec (chromium.fyi.json)', 1034 'read test spec (chromium.fyi.json)',
994 api.json.output({ 1035 api.json.output({
995 'Android Cloud Tests': { 1036 'Android Cloud Tests': {
996 'instrumentation_tests': [ 1037 'instrumentation_tests': [
997 { 1038 {
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 yield ( 1416 yield (
1376 api.test('ensure_goma_fail') + 1417 api.test('ensure_goma_fail') +
1377 api.properties( 1418 api.properties(
1378 mastername='chromium.fyi', 1419 mastername='chromium.fyi',
1379 buildername='Linux remote_run Builder', 1420 buildername='Linux remote_run Builder',
1380 slavename='build1-a1', 1421 slavename='build1-a1',
1381 buildnumber='77457', 1422 buildnumber='77457',
1382 path_config='kitchen') + 1423 path_config='kitchen') +
1383 api.override_step_data('ensure_goma.ensure_installed', retcode=1) 1424 api.override_step_data('ensure_goma.ensure_installed', retcode=1)
1384 ) 1425 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698