aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/flavor/examples/full.py
diff options
context:
space:
mode:
authorGravatar Stephan Altmueller <stephana@google.com>2018-02-21 16:29:28 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-02-22 12:58:47 +0000
commit85834d1265d4b7ae8cb737639af3892b4c11ce12 (patch)
treee85e881b6ca27a33bb41acb842d73a50e70be514 /infra/bots/recipe_modules/flavor/examples/full.py
parent6ede412188278e3b9529fe4b486f3b4899c922d0 (diff)
Remove SkQP bot from master
Bug: skia: Change-Id: I0415690911a52059eaaf7f32c81b7a4c66117d5b Reviewed-on: https://skia-review.googlesource.com/109162 Commit-Queue: Stephan Altmueller <stephana@google.com> Reviewed-by: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots/recipe_modules/flavor/examples/full.py')
-rw-r--r--infra/bots/recipe_modules/flavor/examples/full.py29
1 files changed, 1 insertions, 28 deletions
diff --git a/infra/bots/recipe_modules/flavor/examples/full.py b/infra/bots/recipe_modules/flavor/examples/full.py
index e9c48327a8..6880dcb6e6 100644
--- a/infra/bots/recipe_modules/flavor/examples/full.py
+++ b/infra/bots/recipe_modules/flavor/examples/full.py
@@ -114,7 +114,7 @@ TEST_BUILDERS = [
'Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack',
]
-# Default properties used for TEST_BUILDERS and skqp_builders.
+# Default properties used for TEST_BUILDERS.
defaultProps = lambda buildername: dict(
buildername=buildername,
repository='https://skia.googlesource.com/skia.git',
@@ -140,33 +140,6 @@ def GenTests(api):
stdout=api.raw_io.output('192.168.1.2:5555'))
yield test
- # Test SKQP builder with different branches and issue info.
- skqp_builders = [
- 'Build-Debian9-Clang-universal-devrel-Android_SKQP_master_branch',
- 'Build-Debian9-Clang-universal-devrel-Android_SKQP_no_issue',
- 'Build-Debian9-Clang-universal-devrel-Android_SKQP_dev_branch',
- 'Build-Debian9-Clang-universal-devrel-Android_SKQP_release_branch',
- ]
- for builder in skqp_builders:
- # should we add issue information to this tests.
- with_issue = 'no_issue' not in builder
- props = defaultProps(builder)
- if with_issue:
- props.update(patch_issue=12345, patch_set=2)
-
- test = (
- api.test(builder) +
- api.properties(**props)
- )
-
- if ('SKQP' in builder) and with_issue:
- branch = 'skqp/dev' if 'dev_branch' in builder else (
- 'skqp/release' if 'release_branch' in builder else
- 'master')
- test += api.step_data('get branch for issue',
- stdout=api.raw_io.output(branch))
- yield test
-
builder = 'Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All'
yield (
api.test('exceptions') +