diff options
author | Kevin Lubick <kjlubick@google.com> | 2018-01-04 08:40:27 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-01-04 14:08:59 +0000 |
commit | d12602aa1c4ed3066c4f3bd7e20d28d0eedd3436 (patch) | |
tree | 3ae8b30b0cae9ac0a9513ba154888bb2e912250f /infra | |
parent | 7c43b342c47d6d7fd3c3f92ad369d3da125fbc19 (diff) |
Fix absolute path for recipes
Bug: skia:
Change-Id: I42c528d86f19d369609b26763334e055501a9b9b
Reviewed-on: https://skia-review.googlesource.com/90880
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
Diffstat (limited to 'infra')
7 files changed, 8 insertions, 7 deletions
diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json b/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json index a9c04d9b1b..9ef53509da 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json @@ -1030,7 +1030,7 @@ "/path/to/tmp/json", "copy", " ", - "~/force_quarantine" + "/home/chrome-bot/force_quarantine" ], "infra_step": true, "name": "Quarantining Bot" diff --git a/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json b/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json index 3fd7669741..01133125fd 100644 --- a/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json +++ b/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json @@ -303,7 +303,7 @@ "/path/to/tmp/json", "copy", " ", - "~/force_quarantine" + "/home/chrome-bot/force_quarantine" ], "infra_step": true, "name": "Quarantining Bot" diff --git a/infra/bots/recipe_modules/flavor/gn_android_flavor.py b/infra/bots/recipe_modules/flavor/gn_android_flavor.py index 01fcc30cb7..727b7feece 100644 --- a/infra/bots/recipe_modules/flavor/gn_android_flavor.py +++ b/infra/bots/recipe_modules/flavor/gn_android_flavor.py @@ -369,7 +369,8 @@ if actual_freq != str(freq): # broken state; it was just rebooting. if (self.m.run.failed_steps and isinstance(self.m.run.failed_steps[0], recipe_api.InfraFailure)): - self.m.file.write_text('Quarantining Bot', '~/force_quarantine', ' ') + self.m.file.write_text('Quarantining Bot', + '/home/chrome-bot/force_quarantine', ' ') if self._ever_ran_adb: self._adb('kill adb server', 'kill-server') diff --git a/infra/bots/recipes/perf.expected/cpu_scale_failed.json b/infra/bots/recipes/perf.expected/cpu_scale_failed.json index 035067329c..4f88b376df 100644 --- a/infra/bots/recipes/perf.expected/cpu_scale_failed.json +++ b/infra/bots/recipes/perf.expected/cpu_scale_failed.json @@ -858,7 +858,7 @@ "/path/to/tmp/json", "copy", " ", - "~/force_quarantine" + "/home/chrome-bot/force_quarantine" ], "infra_step": true, "name": "Quarantining Bot" diff --git a/infra/bots/recipes/perf.expected/cpu_scale_failed_golo.json b/infra/bots/recipes/perf.expected/cpu_scale_failed_golo.json index 5843c40404..94144a6048 100644 --- a/infra/bots/recipes/perf.expected/cpu_scale_failed_golo.json +++ b/infra/bots/recipes/perf.expected/cpu_scale_failed_golo.json @@ -926,7 +926,7 @@ "/path/to/tmp/json", "copy", " ", - "~/force_quarantine" + "/home/chrome-bot/force_quarantine" ], "infra_step": true, "name": "Quarantining Bot" diff --git a/infra/bots/recipes/perf.expected/failed_push.json b/infra/bots/recipes/perf.expected/failed_push.json index c68e9b53ec..a1d5942222 100644 --- a/infra/bots/recipes/perf.expected/failed_push.json +++ b/infra/bots/recipes/perf.expected/failed_push.json @@ -98,7 +98,7 @@ "/path/to/tmp/json", "copy", " ", - "~/force_quarantine" + "/home/chrome-bot/force_quarantine" ], "infra_step": true, "name": "Quarantining Bot" diff --git a/infra/bots/recipes/test.expected/failed_push.json b/infra/bots/recipes/test.expected/failed_push.json index c68e9b53ec..a1d5942222 100644 --- a/infra/bots/recipes/test.expected/failed_push.json +++ b/infra/bots/recipes/test.expected/failed_push.json @@ -98,7 +98,7 @@ "/path/to/tmp/json", "copy", " ", - "~/force_quarantine" + "/home/chrome-bot/force_quarantine" ], "infra_step": true, "name": "Quarantining Bot" |