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..1908bb03c8adebe50efe548905508fbd8c003e94 100644 |
| --- a/masters/master.chromium.fyi/master.cfg |
| +++ b/masters/master.chromium.fyi/master.cfg |
| @@ -100,6 +100,7 @@ s_chromium = Scheduler( |
| 'CrWin7Goma(clbr)', # not (clobber) cause crbug.com/399990 |
| 'CrWinClangGoma', |
| 'CrWinClang', |
| + 'CrWinClang Deterministic', |
| 'CrWinClang(dbg)', |
| 'CrWinClang(shared)', |
| 'CrWinClang64', |
| @@ -1193,6 +1194,20 @@ b_chromium_win_clang_asan_shared_tester = { |
| 'auto_reboot': False, |
| } |
| +b_chromium_win_clang_deterministic = { |
| + 'name': 'CrWinClang Deterministic', |
| + # Work around an issue with NaCl build. |
|
Nico
2015/06/04 21:45:33
See all the "# not (clobber) cause crbug.com/39999
Sébastien Marchand
2015/06/05 18:44:42
imho it's cleaner to change the slavebuilddir argu
Nico
2015/06/05 18:46:44
Maybe, but we should do the same everywhere. And I
Sébastien Marchand
2015/06/05 18:52:57
In this case, what's the definition of a "short" n
Nico
2015/06/05 18:58:43
You have 18 characters. "ClangDeterministic" is 18
Sébastien Marchand
2015/06/05 19:09:07
ClangWinRepeatable it is.
|
| + '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', |
|
Nico
2015/06/04 21:45:33
You should use the bundled clang and go in the "wi
Sébastien Marchand
2015/06/05 18:44:42
Switched to "win clang", how can I make sure that
Nico
2015/06/05 18:46:44
It should just work. The tot bots use the chromium
Sébastien Marchand
2015/06/05 18:52:57
It's what we're using, we'll see if it works.
Nico
2015/06/05 18:58:43
https://codereview.chromium.org/1147043007/diff/80
Sébastien Marchand
2015/06/05 19:09:06
Oh sorry, I missed the '_tot' suffix. Fixing this.
|
| +} |
| + |
| b_clang_tot_linux = { |
| 'name': 'ClangToTLinux', |
| 'factory': m_annotator.BaseFactory('chromium', |
| @@ -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_chromium_win_clang_deterministic, |
| # Control flow integrity. |
| b_chromium_cfi_linux, |