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

Side by Side Diff: tools/perf/generate_perf_json.py

Issue 2635053003: Update generate_perf_json.py with Mac Mini 8GB builder. (Closed)
Patch Set: Rebase. Created 3 years, 11 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
« no previous file with comments | « testing/buildbot/chromium.perf.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Script to generate chromium.perf.json and chromium.perf.fyi.json in 6 """Script to generate chromium.perf.json and chromium.perf.fyi.json in
7 the src/testing/buildbot directory. Maintaining these files by hand is 7 the src/testing/buildbot directory. Maintaining these files by hand is
8 too unwieldy. 8 too unwieldy.
9 """ 9 """
10 10
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 swarming=[ 405 swarming=[
406 { 406 {
407 'gpu': '8086:1626', 407 'gpu': '8086:1626',
408 'os': 'Mac-10.11', 408 'os': 'Mac-10.11',
409 'device_ids': [ 409 'device_ids': [
410 'build123-b1', 'build124-b1', 410 'build123-b1', 'build124-b1',
411 'build125-b1', 'build126-b1', 'build127-b1' 411 'build125-b1', 'build126-b1', 'build127-b1'
412 ] 412 ]
413 } 413 }
414 ]) 414 ])
415 waterfall = add_tester(
416 waterfall, 'Mac Mini 8GB 10.12 Perf',
417 'chromium-rel-mac12-mini-8gb', 'mac',
418 swarming=[
419 {
420 'gpu': '8086:0a26',
421 'os': 'Mac-10.12',
422 'device_ids': [
423 'build24-b1', 'build25-b1',
424 'build26-b1', 'build27-b1', 'build28-b1'
425 ]
426 }
427 ])
415 428
416 waterfall = add_tester( 429 waterfall = add_tester(
417 waterfall, 'Linux Perf', 'linux-release', 'linux', 430 waterfall, 'Linux Perf', 'linux-release', 'linux',
418 swarming=[ 431 swarming=[
419 { 432 {
420 'gpu': '102b:0534', 433 'gpu': '102b:0534',
421 'os': 'Ubuntu-14.04', 434 'os': 'Ubuntu-14.04',
422 'device_ids': [ 435 'device_ids': [
423 'build148-m1', 'build149-m1', 436 'build148-m1', 'build149-m1',
424 'build150-m1', 'build151-m1', 'build152-m1' 437 'build150-m1', 'build151-m1', 'build152-m1'
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 waterfall['name'] = 'chromium.perf' 767 waterfall['name'] = 'chromium.perf'
755 fyi_waterfall = get_fyi_waterfall_config() 768 fyi_waterfall = get_fyi_waterfall_config()
756 fyi_waterfall['name'] = 'chromium.perf.fyi' 769 fyi_waterfall['name'] = 'chromium.perf.fyi'
757 770
758 generate_all_tests(fyi_waterfall) 771 generate_all_tests(fyi_waterfall)
759 generate_all_tests(waterfall) 772 generate_all_tests(waterfall)
760 return 0 773 return 0
761 774
762 if __name__ == '__main__': 775 if __name__ == '__main__':
763 sys.exit(main()) 776 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.perf.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698