Chromium Code Reviews| Index: frog/scripts/buildbot_annotated_steps.py |
| =================================================================== |
| --- frog/scripts/buildbot_annotated_steps.py (revision 4094) |
| +++ frog/scripts/buildbot_annotated_steps.py (working copy) |
| @@ -166,7 +166,12 @@ |
| if arch is None: |
| return 1 |
| - status = BuildFrog(arch, mode, system) |
| + status = 0 |
| + if arch == 'frogium': |
| + # Use release VM on frogium bots, so our tests run faster. |
| + status = BuildFrog(arch, 'release', system) |
|
Emily Fortuna
2012/02/09 23:29:06
we use "debug" mode on other things so that the ti
|
| + else: |
| + status = BuildFrog(arch, mode, system) |
| if status != 0: |
| print '@@@STEP_FAILURE@@@' |
| return status |