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

Side by Side Diff: scripts/slave/recipe_modules/gae_sdk/example.py

Issue 2355483004: Add CIPD GAE SDK recipe module and packager. (Closed)
Patch Set: Go SDKs need architecture. Created 4 years, 3 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 2015 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 'depot_tools/cipd',
7 'gae_sdk',
8 'recipe_engine/path',
9 'recipe_engine/platform',
10 ]
11
12
13 def RunSteps(api):
14 api.cipd.install_client()
15
16 for plat in api.gae_sdk.platforms:
17 out = api.path['build'].join('gae_sdk', '%s_%s' % (plat, api.platform.name))
18 try:
19 api.gae_sdk.fetch(plat, out)
20 except api.gae_sdk.PackageNotFound as e:
21 pass
22
23
24 def GenTests(api):
25 yield (
26 api.test('win') +
27 api.platform('win', 64))
28
29 yield (
30 api.test('linux') +
31 api.platform('linux', 64))
32
33 yield (
34 api.test('mac') +
35 api.platform('mac', 64))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698