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

Side by Side Diff: recipes/recipes/publish_tarball.py

Issue 2101753004: Make infra-continuous-precise-64 cross-compile Go cipd package for Linux ARM. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@cross-compile-build
Patch Set: fix unrelated pylint errors >_< Created 4 years, 5 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
« no previous file with comments | « recipes/recipes/luci_py.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # pylint: disable=line-too-long
6
5 from recipe_engine import recipe_api 7 from recipe_engine import recipe_api
6 8
7 import contextlib 9 import contextlib
8 10
9 DEPS = [ 11 DEPS = [
10 'build/chromium', 12 'build/chromium',
11 'build/file', 13 'build/file',
12 'build/gsutil', 14 'build/gsutil',
13 'build/omahaproxy', 15 'build/omahaproxy',
14 'build/trigger', 16 'build/trigger',
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 api.step_data('gsutil ls', stdout=api.raw_io.output( 240 api.step_data('gsutil ls', stdout=api.raw_io.output(
239 'chromium-38.0.2125.122.tar.xz')) 241 'chromium-38.0.2125.122.tar.xz'))
240 ) 242 )
241 243
242 yield ( 244 yield (
243 api.test('trigger') + 245 api.test('trigger') +
244 api.properties.generic() + 246 api.properties.generic() +
245 api.platform('linux', 64) + 247 api.platform('linux', 64) +
246 api.step_data('gsutil ls', stdout=api.raw_io.output('')) 248 api.step_data('gsutil ls', stdout=api.raw_io.output(''))
247 ) 249 )
OLDNEW
« no previous file with comments | « recipes/recipes/luci_py.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698