mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-26 08:01:14 +02:00
Add new configs to cbuildbot_conf to match master.cfg
Change-Id: I4a28ac0f8e1a90313a9373e213e8a30003d1f8ad BUG=chromium-os:11229 TEST=Unittests Review URL: http://codereview.chromium.org/6268020
This commit is contained in:
parent
3eb3543e9a
commit
e7b9a4f558
@ -65,14 +65,35 @@ default = {
|
|||||||
'factory_test_mod' : True,
|
'factory_test_mod' : True,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
arm = {
|
||||||
|
# VM/tests are broken on arm.
|
||||||
|
'unittests' : False,
|
||||||
|
'vm_tests' : False,
|
||||||
|
|
||||||
|
# These images don't work for arm.
|
||||||
|
'factory_install_mod' : False,
|
||||||
|
'factory_test_mod' : False,
|
||||||
|
}
|
||||||
|
|
||||||
|
full = {
|
||||||
|
# Full builds are test build to show that we can build from scratch,
|
||||||
|
# so use settings to build from scratch, and archive the results.
|
||||||
|
'usepkg' : False,
|
||||||
|
'chroot_replace' : True,
|
||||||
|
|
||||||
|
'archive_build' : True
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
config = {}
|
config = {}
|
||||||
|
|
||||||
config['x86-generic-pre-flight-queue'] = default.copy()
|
config['x86-generic-pre-flight-queue'] = default.copy()
|
||||||
config['x86-generic-pre-flight-queue'].update({
|
config['x86-generic-pre-flight-queue'].update({
|
||||||
'board' : 'x86-generic',
|
'board' : 'x86-generic',
|
||||||
'uprev' : True,
|
|
||||||
'master' : True,
|
'master' : True,
|
||||||
'hostname' : 'chromeosbuild2',
|
'hostname' : 'chromeosbuild2',
|
||||||
|
|
||||||
|
'uprev' : True,
|
||||||
'rev_overlays': 'public',
|
'rev_overlays': 'public',
|
||||||
'push_overlays': 'public',
|
'push_overlays': 'public',
|
||||||
})
|
})
|
||||||
@ -83,8 +104,9 @@ config['x86-generic-chrome-pre-flight-queue'] = \
|
|||||||
config['x86-mario-pre-flight-queue'] = default.copy()
|
config['x86-mario-pre-flight-queue'] = default.copy()
|
||||||
config['x86-mario-pre-flight-queue'].update({
|
config['x86-mario-pre-flight-queue'].update({
|
||||||
'board' : 'x86-mario',
|
'board' : 'x86-mario',
|
||||||
'uprev' : True,
|
|
||||||
'master' : True,
|
'master' : True,
|
||||||
|
|
||||||
|
'uprev' : True,
|
||||||
'rev_overlays': 'both',
|
'rev_overlays': 'both',
|
||||||
'push_overlays': 'private',
|
'push_overlays': 'private',
|
||||||
})
|
})
|
||||||
@ -92,8 +114,9 @@ config['x86-mario-pre-flight-queue'].update({
|
|||||||
config['x86-mario-pre-flight-branch'] = default.copy()
|
config['x86-mario-pre-flight-branch'] = default.copy()
|
||||||
config['x86-mario-pre-flight-branch'].update({
|
config['x86-mario-pre-flight-branch'].update({
|
||||||
'board' : 'x86-mario',
|
'board' : 'x86-mario',
|
||||||
'uprev' : True,
|
|
||||||
'master' : True,
|
'master' : True,
|
||||||
|
|
||||||
|
'uprev' : True,
|
||||||
'rev_overlays': 'both',
|
'rev_overlays': 'both',
|
||||||
'push_overlays': 'both',
|
'push_overlays': 'both',
|
||||||
})
|
})
|
||||||
@ -101,6 +124,7 @@ config['x86-mario-pre-flight-branch'].update({
|
|||||||
config['x86-agz-bin'] = default.copy()
|
config['x86-agz-bin'] = default.copy()
|
||||||
config['x86-agz-bin'].update({
|
config['x86-agz-bin'].update({
|
||||||
'board' : 'x86-agz',
|
'board' : 'x86-agz',
|
||||||
|
|
||||||
'uprev' : True,
|
'uprev' : True,
|
||||||
'rev_overlays': 'both',
|
'rev_overlays': 'both',
|
||||||
'push_overlays': None,
|
'push_overlays': None,
|
||||||
@ -109,6 +133,7 @@ config['x86-agz-bin'].update({
|
|||||||
config['x86-dogfood-bin'] = default.copy()
|
config['x86-dogfood-bin'] = default.copy()
|
||||||
config['x86-dogfood-bin'].update({
|
config['x86-dogfood-bin'].update({
|
||||||
'board' : 'x86-dogfood',
|
'board' : 'x86-dogfood',
|
||||||
|
|
||||||
'uprev' : True,
|
'uprev' : True,
|
||||||
'rev_overlays': 'both',
|
'rev_overlays': 'both',
|
||||||
'push_overlays': None,
|
'push_overlays': None,
|
||||||
@ -117,30 +142,56 @@ config['x86-dogfood-bin'].update({
|
|||||||
config['x86-pineview-bin'] = default.copy()
|
config['x86-pineview-bin'] = default.copy()
|
||||||
config['x86-pineview-bin'].update({
|
config['x86-pineview-bin'].update({
|
||||||
'board' : 'x86-pineview',
|
'board' : 'x86-pineview',
|
||||||
|
|
||||||
'uprev' : True,
|
'uprev' : True,
|
||||||
'rev_overlays': 'public',
|
'rev_overlays': 'public',
|
||||||
'push_overlays': None,
|
'push_overlays': None,
|
||||||
})
|
})
|
||||||
|
|
||||||
config['arm-tegra2-bin'] = default.copy()
|
config['arm-tegra2-bin'] = default.copy()
|
||||||
|
config['arm-tegra2-bin'].update(arm)
|
||||||
config['arm-tegra2-bin'].update({
|
config['arm-tegra2-bin'].update({
|
||||||
'board' : 'tegra2_dev-board',
|
'board' : 'tegra2_dev-board',
|
||||||
|
|
||||||
'uprev' : True,
|
'uprev' : True,
|
||||||
'unittests' : False,
|
|
||||||
'vm_tests' : False,
|
|
||||||
'rev_overlays': 'public',
|
'rev_overlays': 'public',
|
||||||
'factory_install_mod' : False,
|
'push_overlays': None,
|
||||||
'factory_test_mod' : False,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
config['arm-generic-bin'] = default.copy()
|
config['arm-generic-bin'] = default.copy()
|
||||||
|
config['arm-generic-bin'].update(arm)
|
||||||
config['arm-generic-bin'].update({
|
config['arm-generic-bin'].update({
|
||||||
'board' : 'arm-generic',
|
'board' : 'arm-generic',
|
||||||
|
|
||||||
'uprev' : True,
|
'uprev' : True,
|
||||||
'unittests' : False,
|
'rev_overlays': 'public',
|
||||||
'vm_tests' : False,
|
'push_overlays': None,
|
||||||
'factory_install_mod' : False,
|
})
|
||||||
'factory_test_mod' : False,
|
|
||||||
|
config['arm-generic-full'] = default.copy()
|
||||||
|
config['arm-generic-full'].update(arm)
|
||||||
|
config['arm-generic-full'].update(full)
|
||||||
|
config['arm-generic-full'].update({
|
||||||
|
'board' : 'arm-generic',
|
||||||
|
})
|
||||||
|
|
||||||
|
config['arm-tegra2-full'] = default.copy()
|
||||||
|
config['arm-tegra2-full'].update(arm)
|
||||||
|
config['arm-tegra2-full'].update(full)
|
||||||
|
config['arm-tegra2-full'].update({
|
||||||
|
'board' : 'tegra2_dev-board',
|
||||||
|
})
|
||||||
|
|
||||||
|
config['x86-generic-full'] = default.copy()
|
||||||
|
config['x86-generic-full'].update(full)
|
||||||
|
config['x86-generic-full'].update({
|
||||||
|
'board' : 'x86-generic',
|
||||||
|
})
|
||||||
|
|
||||||
|
config['x86-pineview-full'] = default.copy()
|
||||||
|
config['x86-pineview-full'].update(full)
|
||||||
|
config['x86-pineview-full'].update({
|
||||||
|
'board' : 'x86-pineview',
|
||||||
})
|
})
|
||||||
|
|
||||||
# TODO(dgarrett) delete when buildbot updated to use new names
|
# TODO(dgarrett) delete when buildbot updated to use new names
|
||||||
|
Loading…
x
Reference in New Issue
Block a user