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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 1257683007: Make CrWinClangLLD bot do 32-bit builds, add a CrWinClangLLD64 bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: . Created 5 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'settings': { 10 'settings': {
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 'testing': { 567 'testing': {
568 'platform': 'win', 568 'platform': 'win',
569 }, 569 },
570 'enable_swarming': True, 570 'enable_swarming': True,
571 }, 571 },
572 'CrWinClangLLD': { 572 'CrWinClangLLD': {
573 'chromium_config': 'chromium_win_clang_tot', 573 'chromium_config': 'chromium_win_clang_tot',
574 'gclient_config': 'chromium', 574 'gclient_config': 'chromium',
575 'chromium_config_kwargs': { 575 'chromium_config_kwargs': {
576 'BUILD_CONFIG': 'Release', 576 'BUILD_CONFIG': 'Release',
577 'TARGET_BITS': 64, 577 'TARGET_BITS': 32,
578 }, 578 },
579 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 }, 579 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 },
580 'bot_type': 'builder', 580 'bot_type': 'builder',
581 'testing': { 581 'testing': {
582 'platform': 'win', 582 'platform': 'win',
583 }, 583 },
584 'use_isolate': True, 584 'use_isolate': True,
585 'enable_swarming': True, 585 'enable_swarming': True,
586 # Workaround so that recipes doesn't add random build targets to our 586 # Workaround so that recipes doesn't add random build targets to our
587 # compile line. We want to build everything. 587 # compile line. We want to build everything.
588 'add_tests_as_compile_targets': False, 588 'add_tests_as_compile_targets': False,
589 }, 589 },
590 'CrWinClangLLD tester': { 590 'CrWinClangLLD tester': {
591 'chromium_config': 'chromium_no_goma', 591 'chromium_config': 'chromium_no_goma',
592 'gclient_config': 'chromium', 592 'gclient_config': 'chromium',
593 'chromium_config_kwargs': { 593 'chromium_config_kwargs': {
594 'BUILD_CONFIG': 'Release', 594 'BUILD_CONFIG': 'Release',
595 'TARGET_BITS': 64, 595 'TARGET_BITS': 32,
596 }, 596 },
597 'test_generators': [ 597 'test_generators': [
598 steps.generate_gtest, 598 steps.generate_gtest,
599 ], 599 ],
600 'bot_type': 'tester', 600 'bot_type': 'tester',
601 'parent_buildername': 'CrWinClangLLD', 601 'parent_buildername': 'CrWinClangLLD',
602 'testing': { 602 'testing': {
603 'platform': 'win', 603 'platform': 'win',
604 }, 604 },
605 'enable_swarming': True, 605 'enable_swarming': True,
606 }, 606 },
607 'CrWinClangLLD64': {
608 'chromium_config': 'chromium_win_clang_tot',
609 'gclient_config': 'chromium',
610 'chromium_config_kwargs': {
611 'BUILD_CONFIG': 'Release',
612 'TARGET_BITS': 64,
613 },
614 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 },
615 'bot_type': 'builder',
616 'testing': {
617 'platform': 'win',
618 },
619 'use_isolate': True,
620 'enable_swarming': True,
621 # Workaround so that recipes doesn't add random build targets to our
622 # compile line. We want to build everything.
623 'add_tests_as_compile_targets': False,
Adrian Kuegel 2015/07/28 15:01:06 Small comment: you could just specify compile_targ
Nico 2015/07/28 15:11:16 I want the bot to build the default target. (Also,
624 },
625 'CrWinClangLLD64 tester': {
626 'chromium_config': 'chromium_no_goma',
627 'gclient_config': 'chromium',
628 'chromium_config_kwargs': {
629 'BUILD_CONFIG': 'Release',
630 'TARGET_BITS': 64,
631 },
632 'test_generators': [
633 steps.generate_gtest,
634 ],
635 'bot_type': 'tester',
636 'parent_buildername': 'CrWinClangLLD64',
637 'testing': {
638 'platform': 'win',
639 },
640 'enable_swarming': True,
641 },
607 'CrWinAsan': { 642 'CrWinAsan': {
608 'chromium_config': 'chromium_win_clang_asan_tot', 643 'chromium_config': 'chromium_win_clang_asan_tot',
609 'gclient_config': 'chromium', 644 'gclient_config': 'chromium',
610 'chromium_config_kwargs': { 645 'chromium_config_kwargs': {
611 'BUILD_CONFIG': 'Release', 646 'BUILD_CONFIG': 'Release',
612 'TARGET_BITS': 32, 647 'TARGET_BITS': 32,
613 }, 648 },
614 'bot_type': 'builder', 649 'bot_type': 'builder',
615 'testing': { 650 'testing': {
616 'platform': 'win', 651 'platform': 'win',
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 'test_generators': [ 1621 'test_generators': [
1587 steps.generate_gtest, 1622 steps.generate_gtest,
1588 steps.generate_script, 1623 steps.generate_script,
1589 ], 1624 ],
1590 'testing': { 1625 'testing': {
1591 'platform': 'win', 1626 'platform': 'win',
1592 }, 1627 },
1593 }, 1628 },
1594 }, 1629 },
1595 } 1630 }
OLDNEW
« no previous file with comments | « masters/master.chromium.fyi/slaves.cfg ('k') | scripts/slave/recipes/chromium.expected/full_chromium_fyi_CrWinClangLLD.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698