mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-11 23:16:58 +02:00
TEST=Ran several non-checked in unit tests (will check in later) and tested with cbuildbot as it is now. BUG=5989 Review URL: http://codereview.chromium.org/3165052 Change-Id: I867a597b34bbf63261b9d19b57cef9631100c339
27 lines
991 B
Python
27 lines
991 B
Python
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Dictionary values that aren't self-explanatory:
|
|
# 'master' - only one allowed to be True. This bot controls the uprev process.
|
|
# 'important' - master bot uses important bots to determine overall status.
|
|
# i.e. if master bot succeeds and other important slaves succeed
|
|
# then the master will uprev packages. This should align
|
|
# with info vs. closer except for the master.
|
|
# 'hostname' - Needed for 'important' slaves. The hostname of the bot. Should
|
|
# match hostname in slaves.cfg in buildbot checkout.
|
|
|
|
config = {}
|
|
config['default'] = {
|
|
'board' : 'x86-generic',
|
|
'uprev' : False,
|
|
'master' : False,
|
|
'important' : False,
|
|
}
|
|
config['x86-generic-pre-flight-queue'] = {
|
|
'board' : 'x86-generic',
|
|
'uprev' : True,
|
|
'master' : True,
|
|
'important' : False,
|
|
}
|