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

Unified Diff: recipes/recipes/infra_continuous.py

Issue 2249223002: Add GOOS=android cross-compile to infra-continous builder. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: 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
« no previous file with comments | « no previous file | recipes/recipes/infra_continuous.expected/infra-cross-compile.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/recipes/infra_continuous.py
diff --git a/recipes/recipes/infra_continuous.py b/recipes/recipes/infra_continuous.py
index 89dcd29a6e7ea02347d46943640f54512bee0a27..e9dd4b01df76ce8294652588f154119809f4c238 100644
--- a/recipes/recipes/infra_continuous.py
+++ b/recipes/recipes/infra_continuous.py
@@ -22,7 +22,8 @@ DEPS = [
# Builder name => [{GOOS: ..., GOARCH: ...}].
CROSS_COMPILING_BUILDERS = {
- 'infra-continuous-precise-64': [{'GOOS': 'linux', 'GOARCH': 'arm'}],
+ 'infra-continuous-precise-64': [{'GOOS': 'linux', 'GOARCH': 'arm'},
+ {'GOOS': 'android', 'GOARCH': 'arm'}],
}
@@ -247,6 +248,9 @@ def GenTests(api):
'cipd - upload packages', api.json.output(cipd_json_output)) +
api.override_step_data(
'cipd - upload packages [GOOS:linux GOARCH:arm]',
+ api.json.output(cipd_json_output)) +
+ api.override_step_data(
+ 'cipd - upload packages [GOOS:android GOARCH:arm]',
api.json.output(cipd_json_output))
)
« no previous file with comments | « no previous file | recipes/recipes/infra_continuous.expected/infra-cross-compile.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698