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

Side by Side Diff: scripts/slave/recipes/sync_submodules.py

Issue 2041743002: Add sync_submodules builders on master.chromium.infra. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Test expectations Created 4 years, 6 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 DEPS = [
6 'sync_submodules',
7 ]
8
9
10 def RunSteps(api):
11 api.sync_submodules(
12 'https://chromium.googlesource.com/chromium/src',
13 'https://chromium.googlesource.com/chromium/src/codesearch')
14 api.sync_submodules(
15 'https://chromium.googlesource.com/infra/infra',
16 'https://chromium.googlesource.com/infra/infra/codesearch')
17
18
19 def GenTests(api):
20 yield api.test('basic')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698