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

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: Fix missing dependency 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..c42a7901baacbc3409f66ed98908e5232a943446 100644
--- a/infra/bots/recipes/swarm_test.py
+++ b/infra/bots/recipes/swarm_test.py
@@ -7,12 +7,13 @@
DEPS = [
+ 'core',
'recipe_engine/json',
'recipe_engine/path',
'recipe_engine/platform',
'recipe_engine/properties',
'recipe_engine/raw_io',
- 'skia',
+ 'run',
]
@@ -33,10 +34,10 @@ TEST_BUILDERS = {
def RunSteps(api):
- api.skia.setup()
- api.skia.test_steps()
- api.skia.cleanup_steps()
- api.skia.check_failure()
+ api.core.setup()
+ api.core.test_steps()
+ api.core.cleanup_steps()
+ 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')
- )
- )
« no previous file with comments | « infra/bots/recipes/swarm_perf.py ('k') | infra/bots/recipes/swarm_test.expected/legacy_skimage_version.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698