diff options
author | Ben Wagner <benjaminwagner@google.com> | 2018-05-15 11:10:17 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-05-15 19:44:13 +0000 |
commit | 4c9b700bb5e70c04511b8051c1318c435c750851 (patch) | |
tree | d6162c2f478ba912fb2ff5c160cf8ba50b8750a3 | |
parent | ecd35c16ef1257233c5677ae5f9a31f654d22994 (diff) |
Run only canonical configs for 32-bit Test tasks.
https://skia-review.googlesource.com/c/skia/+/127325 added a couple new
configs that caused 32-bit MSVC Test bots to be quite a bit slower.
After discussion with mtklein, we probably only want to add the more
esoteric configs for 64-bit GCE bots.
No-Try: true
Change-Id: I04e78679c43b380173dce1ea718df5d897e875b7
Reviewed-on: https://skia-review.googlesource.com/128180
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Auto-Submit: Ben Wagner <benjaminwagner@google.com>
-rw-r--r-- | infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All.json | 44 | ||||
-rw-r--r-- | infra/bots/recipes/test.py | 2 |
2 files changed, 1 insertions, 45 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All.json b/infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All.json index 0e17a472be..06871009a2 100644 --- a/infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All.json +++ b/infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All.json @@ -259,14 +259,6 @@ "--config", "8888", "pdf", - "g8", - "565", - "f16", - "lite-8888", - "gbr-8888", - "srgb", - "srgbnl", - "esrgb", "serialize-8888", "tiles_rt-8888", "pic-8888", @@ -276,26 +268,6 @@ "image", "colorImage", "--blacklist", - "f16", - "_", - "_", - "dstreadshuffle", - "gbr-8888", - "image", - "_", - "_", - "gbr-8888", - "colorImage", - "_", - "_", - "g8", - "image", - "_", - "_", - "g8", - "colorImage", - "_", - "_", "serialize-8888", "gm", "_", @@ -440,10 +412,6 @@ "gm", "_", "drawfilter", - "lite-8888", - "gm", - "_", - "drawfilter", "pic-8888", "gm", "_", @@ -472,10 +440,6 @@ "gm", "_", "gamut", - "lite-8888", - "gm", - "_", - "gamut", "serialize-8888", "gm", "_", @@ -484,10 +448,6 @@ "gm", "_", "complexclip4_bw", - "lite-8888", - "gm", - "_", - "complexclip4_bw", "serialize-8888", "gm", "_", @@ -496,10 +456,6 @@ "gm", "_", "complexclip4_aa", - "lite-8888", - "gm", - "_", - "complexclip4_aa", "serialize-8888", "gm", "_", diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 742e098bad..0c5c284b17 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -98,7 +98,7 @@ def dm_flags(api, bot): if 'Android' in bot: configs.remove('pdf') - if '-GCE-' in bot: + if '-GCE-' in bot and 'x86_64' in bot: configs.extend(['g8']) configs.extend(['565']) configs.extend(['f16']) |