Chromium Code Reviews| Index: buildbot/cbuildbot_config.py |
| diff --git a/buildbot/cbuildbot_config.py b/buildbot/cbuildbot_config.py |
| index e0bcb082b22572716b7172235cd23e4180d3a2ec..55f5266081bb1a387d8f638d5782501a412283eb 100644 |
| --- a/buildbot/cbuildbot_config.py |
| +++ b/buildbot/cbuildbot_config.py |
| @@ -45,6 +45,14 @@ build_type -- Upload prebuilts under the specified category. Can be any of |
| test_mod -- Create a test mod image for archival. |
| factory_install_mod -- Create a factory install image for archival. |
| factory_test_mod -- Create a factory test image for archival. |
| + |
| +git_url -- git repository URL for our manifests. |
| + External: http://git.chromium.org/git/manifest |
|
sosa
2011/04/11 19:03:54
indentation?
dgarrett
2011/04/11 20:53:13
Done.
|
| + Internal: ssh://git@gitrw.chromium.org:9222/manifest-internal |
| + |
| +manifest_version -- Per-build manifest to be stored in GIT repo at specified |
|
sosa
2011/04/11 19:03:54
Maybe re-word as: URL to GIT repo to store per-bu
dgarrett
2011/04/11 20:53:13
Done.
|
| + URL. Usually None or |
|
sosa
2011/04/11 19:03:54
indentation?
dgarrett
2011/04/11 20:53:13
Done.
|
| + ssh://git@gitrw.chromium.org:9222/manifest-versions |
| """ |
| # TODO(dgarrett) Make test_mod, factory_install_mod, factory_test_mod options |
| @@ -78,6 +86,9 @@ default = { |
| 'test_mod' : False, |
| 'factory_install_mod' : False, |
| 'factory_test_mod' : False, |
| + |
| + 'git_url' : 'http://git.chromium.org/git/manifest', |
| + 'manifest_version' : None, |
| } |
| arm = { |
| @@ -244,3 +255,13 @@ config['x86-pineview-full'].update(full) |
| config['x86-pineview-full'].update({ |
| 'board' : 'x86-pineview', |
| }) |
| + |
| +config['x86-generic-manifest'] = default.copy() |
| +config['x86-generic-manifest'].update({ |
| + 'board' : 'x86-generic', |
| + |
| + 'git_url' : 'ssh://git@gitrw.chromium.org:9222/manifest-internal', |
| + 'manifest_version' : 'ssh://git@gitrw.chromium.org:9222/manifest-versions', |
| +}) |
| + |
| + |