Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: infra/bots/recipes/swarm_test.py

Issue 2198173002: Re-organize Skia recipes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rename modules, add README.md Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: infra/bots/recipes/swarm_test.py
diff --git a/infra/bots/recipes/swarm_test.py b/infra/bots/recipes/swarm_test.py
index a56da1ea5d1d8734820a32f9837374d08e5755a7..1d5cb4d50d593b43419ff8fc2c5dbcad87e68932 100644
--- a/infra/bots/recipes/swarm_test.py
+++ b/infra/bots/recipes/swarm_test.py
@@ -13,6 +13,7 @@ DEPS = [
'recipe_engine/properties',
'recipe_engine/raw_io',
'skia',
+ 'run',
]
@@ -36,7 +37,7 @@ def RunSteps(api):
api.skia.setup()
api.skia.test_steps()
api.skia.cleanup_steps()
- api.skia.check_failure()
+ api.run.check_failure()
def GenTests(api):
@@ -307,38 +308,3 @@ def GenTests(api):
) +
api.platform('win', 64)
)
-
- builder = 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug'
- yield (
- api.test('legacy_skimage_version') +
- api.properties(buildername=builder,
- mastername='client.skia',
- slavename='skiabot-linux-swarm-000',
- buildnumber=6,
- revision='abc123',
- path_config='kitchen',
- swarm_out_dir='[SWARM_OUT_DIR]') +
- api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
- 'skp', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
- )
- )
-
- yield (
- api.test('legacy_skp_version') +
- api.properties(buildername=builder,
- mastername='client.skia',
- slavename='skiabot-linux-swarm-000',
- buildnumber=6,
- revision='abc123',
- path_config='kitchen',
- swarm_out_dir='[SWARM_OUT_DIR]') +
- api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
- 'skimage', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
- )
- )

Powered by Google App Engine
This is Rietveld 408576698