Chromium Code Reviews| Index: masters/master.chromium.fyi/master.cfg |
| diff --git a/masters/master.chromium.fyi/master.cfg b/masters/master.chromium.fyi/master.cfg |
| index 6dd2fdb8ee6ccc5c6bb0fa785c8828ced382ce1a..a6230b9d0c2d62def70430e23d562e57e319b8cb 100644 |
| --- a/masters/master.chromium.fyi/master.cfg |
| +++ b/masters/master.chromium.fyi/master.cfg |
| @@ -169,6 +169,7 @@ s_chromium = Scheduler( |
| 'Browser Side Navigation Linux', |
| 'Closure Compilation Linux', |
| 'CFI Linux', |
| + 'Windows Clang deterministic build', |
| ]) |
| # Triggerable scheduler for Windows Release. |
| @@ -1796,6 +1797,20 @@ b_chromium_cfi_linux = { |
| 'auto_reboot': True, |
| } |
| +b_win_clang_deterministic_build = { |
| + 'name': 'Windows Clang deterministic build', |
| + # Work around an issue with NaCl build. |
| + 'slavebuilddir': 'chr', |
| + 'factory': annotator_factory.AnnotatorFactory().BaseFactory( |
| + 'swarming/deterministic_build', |
| + factory_properties = { |
| + 'configuration': 'Release', |
| + }), |
| + # Auto-reboot to try to clear up TEMP fill up issues. |
| + 'auto_reboot': True, |
| + 'category': 'clang tot', |
| +} |
| + |
| def windows_browser_drmemory_light_tester(shard, total): |
| if shard < 1 or shard > total: |
| raise |
| @@ -1987,6 +2002,7 @@ c['builders'] = [ |
| b_chromium_win_clang_asan_tester, |
| b_chromium_win_clang_asan_shared, |
| b_chromium_win_clang_asan_shared_tester, |
| + b_win_clang_deterministic_build, |
|
M-A Ruel
2015/06/04 20:56:07
Move along other clang builders
Sébastien Marchand
2015/06/04 21:16:29
I've renamed this variable, otherwise it's already
|
| # Control flow integrity. |
| b_chromium_cfi_linux, |