aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Ravi Mistry <rmistry@google.com>2017-09-13 08:03:37 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-09-13 12:25:40 +0000
commit489bef054ee912992195a905c1035b5059dc9c57 (patch)
treed9cabf912771f6ba9baa91a3c8fdc15165a405a0 /infra
parentadf17dc52ff4b56720174f71a3e9507a682f8487 (diff)
Use Chrome-GPU pool for CT GPU runs
Bug: chromium:700053 NoTry: true Change-Id: Ib62ea29f5192df1b03e9d8caecb6af4daeee0e49 Reviewed-on: https://skia-review.googlesource.com/46060 Commit-Queue: Ravi Mistry <rmistry@google.com> Reviewed-by: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json10
-rw-r--r--infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json10
-rw-r--r--infra/bots/recipes/ct_skps.py2
3 files changed, 12 insertions, 10 deletions
diff --git a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json
index af34b27b0d..7d239ca5a6 100644
--- a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json
+++ b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json
@@ -853,7 +853,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -924,7 +924,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -995,7 +995,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -1066,7 +1066,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -1137,7 +1137,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
diff --git a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json
index bf66fb78db..f7f67e4581 100644
--- a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json
+++ b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json
@@ -853,7 +853,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -924,7 +924,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -995,7 +995,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -1066,7 +1066,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
@@ -1137,7 +1137,7 @@
"Ubuntu-14.04",
"--dimension",
"pool",
- "Chrome",
+ "Chrome-GPU",
"--tag",
"allow_milo:1",
"--tag",
diff --git a/infra/bots/recipes/ct_skps.py b/infra/bots/recipes/ct_skps.py
index 193f81257b..6f9885b40a 100644
--- a/infra/bots/recipes/ct_skps.py
+++ b/infra/bots/recipes/ct_skps.py
@@ -203,6 +203,8 @@ def RunSteps(api):
dimensions={'os': 'Ubuntu-14.04', 'cpu': 'x86-64', 'pool': 'Chrome'}
if 'GPU' in buildername:
dimensions['gpu'] = '10de:104a'
+ # See crbug.com/700053
+ dimensions['pool'] = 'Chrome-GPU'
tasks = api.skia_swarming.trigger_swarming_tasks(
tasks_to_swarm_hashes, dimensions=dimensions, io_timeout=40*60)