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

Side by Side Diff: infra/bots/recipes/swarm_presubmit.py

Issue 2392663004: Add swarm_presubmit recipe (Closed)
Patch Set: Clean Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 # Recipe which runs the Skia presubmit.
7
8
9 DEPS = [
10 'core',
11 'recipe_engine/properties',
12 'recipe_engine/step',
13 'vars',
14 ]
15
16
17 def RunSteps(api):
18 api.vars.setup()
19 api.core.checkout_steps()
20 api.step('presubmit',
21 cmd=['git', 'cl', 'presubmit', '--force'],
22 cwd=api.vars.skia_dir)
23
24
25 def GenTests(api):
26 yield (
27 api.test('presubmit') +
28 api.properties(buildername='Housekeeper-PerCommit-Presubmit',
29 mastername='client.skia.fyi',
30 slavename='dummy-slave',
31 buildnumber=5,
32 revision='abc123',
33 path_config='kitchen',
34 swarm_out_dir='[SWARM_OUT_DIR]')
35 )
OLDNEW
« no previous file with comments | « infra/bots/recipes/presubmit.expected/presubmit.json ('k') | infra/bots/recipes/swarm_presubmit.expected/presubmit.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698