Chromium Code Reviews| Index: masters/master.tryserver.chromium.linux/master.cfg |
| diff --git a/masters/master.tryserver.chromium.linux/master.cfg b/masters/master.tryserver.chromium.linux/master.cfg |
| index 537b845293bbfe0c43f76a34bf458155164d8798..f79d0a30b5d32c7b7f1a9e7ea0d5f080a3ffcffe 100644 |
| --- a/masters/master.tryserver.chromium.linux/master.cfg |
| +++ b/masters/master.tryserver.chromium.linux/master.cfg |
| @@ -95,6 +95,12 @@ b_android_amp_rel_tests_recipe = { |
| 'slavebuilddir': 'android', |
| } |
| +b_android_deterministic = { |
|
Sébastien Marchand
2015/06/05 17:20:27
I could use the 'chromium_builders.append' approac
|
| + 'name': 'android_deterministic', |
| + 'factory': m_annotator.BaseFactory('deterministic_build'), |
| + 'slavebuilddir': 'android_deterministic' |
|
M-A Ruel
2015/06/05 17:26:18
It's not needed, remove.
Sébastien Marchand
2015/06/05 18:26:44
Done.
|
| +} |
| + |
| # This builder is intended to be used to build and archive full builds (same as |
| # "Linux Builder" on chromium.linux) for a requested revision. These archived |
| # builds will then be downloaded and used to bisect test failures (similar to |
| @@ -291,6 +297,12 @@ chromium_builders.extend([{ |
| }, |
| ]) |
| +chromium_builders.append({ |
| + 'name': 'linux_deterministic', |
| + 'factory': m_annotator.BaseFactory('deterministic_build') |
| + 'slavebuilddir': 'linux_deterministic', |
|
M-A Ruel
2015/06/05 17:26:18
It's not needed, remove.
Sébastien Marchand
2015/06/05 18:26:44
Done.
|
| +}) |
| + |
| # Ozone builder |
| ozone_builders = [{ |
| 'name': 'linux_ecs_ozone', |
| @@ -358,6 +370,7 @@ c['builders'] = [ |
| b_android_x86_dbg_recipe, |
| b_android_clang_dbg_recipe, |
| b_android_amp_rel_tests_recipe, |
| + b_android_deterministic, |
| b_build_presubmit, |
| b_linux_chromium_asan_rel_ng, |
| b_linux_full_bisect_builder, |