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

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

Issue 1830323005: Windows 10 64-bit try server configuration. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: fixes Created 4 years, 8 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 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after
2041 'test_generators': [ 2041 'test_generators': [
2042 steps.generate_gtest, 2042 steps.generate_gtest,
2043 steps.generate_script, 2043 steps.generate_script,
2044 steps.generate_isolated_script, 2044 steps.generate_isolated_script,
2045 steps.generate_instrumentation_test, 2045 steps.generate_instrumentation_test,
2046 ], 2046 ],
2047 'testing': { 2047 'testing': {
2048 'platform': 'linux', 2048 'platform': 'linux',
2049 }, 2049 },
2050 }, 2050 },
2051 'Win10 Tests (1)': {
2052 'chromium_config': 'chromium',
2053 'chromium_apply_config': ['ninja_confirm_noop'],
2054 'gclient_config': 'chromium',
2055 'chromium_config_kwargs': {
2056 'BUILD_CONFIG': 'Release',
2057 'TARGET_BITS': 32,
2058 },
2059 'bot_type': 'tester',
2060 'test_generators': [
2061 steps.generate_gtest,
2062 steps.generate_script,
2063 steps.generate_isolated_script,
2064 ],
2065 'tests': [
2066 steps.MiniInstallerTest(),
2067 ],
2068 'parent_buildername': 'Win Builder',
2069 'testing': {
2070 'platform': 'win',
2071 },
2072 'enable_swarming': True,
2073 'swarming_dimensions': {
2074 'os': 'Windows-10-SP0',
2075 },
2076 },
2077 'Win SyzyAsan (rel)': { 2051 'Win SyzyAsan (rel)': {
2078 'chromium_config': 'chromium', 2052 'chromium_config': 'chromium',
2079 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'], 2053 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'],
2080 'gclient_config': 'chromium', 2054 'gclient_config': 'chromium',
2081 'chromium_config_kwargs': { 2055 'chromium_config_kwargs': {
2082 'BUILD_CONFIG': 'Release', 2056 'BUILD_CONFIG': 'Release',
2083 'TARGET_PLATFORM': 'win', 2057 'TARGET_PLATFORM': 'win',
2084 'TARGET_BITS': 32, 2058 'TARGET_BITS': 32,
2085 }, 2059 },
2086 'compile_targets': [ 2060 'compile_targets': [
2087 'chrome', 2061 'chrome',
2088 ], 2062 ],
2089 'enable_swarming': True, 2063 'enable_swarming': True,
2090 'testing': { 2064 'testing': {
2091 'platform': 'win', 2065 'platform': 'win',
2092 }, 2066 },
2093 }, 2067 },
2094 }, 2068 },
2095 } 2069 }
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.win/slaves.cfg ('k') | scripts/slave/recipe_modules/chromium_tests/chromium_win.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698