blob: 390e36f555fbe4484ca97143e8e9e398e5557043 [file] [log] [blame]
Oleg Loskutoffc19f92b2019-10-17 15:44:16 -07001# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
Bindu Mahadev472a5582016-05-20 09:59:07 -07004
Xixuan Wu93e646c2017-12-07 18:36:10 -08005
6class Labels:
7 """
8 Constants related to label names.
9
10 @var BOARD_PREFIX The string with which board labels are prefixed.
11 @var MODEL_PREFIX The string with which model labels are prefixed.
12 @var POOL_PREFIX The stright with which pool labels are prefixed.
13 """
14 BOARD_PREFIX = 'board:'
15 MODEL_PREFIX = 'model:'
16 POOL_PREFIX = 'pool:'
17
18
19class Pools:
20 """
21 Well-known pool names used in automated inventory management.
22
23 These are general purpose pools of DUTs that are considered
24 identical for purposes of testing. That is, a device in one of
25 these pools can be shifted to another pool at will for purposes
26 of supplying test demand.
27
28 Devices in these pools are not allowed to have special-purpose
29 attachments, or to be part of in any kind of custom fixture.
30 Devices in these pools are also required to reside in areas
31 managed by the Platforms team (i.e. at the time of this writing,
32 only in "Atlantis" or "Destiny").
33
34 CRITICAL_POOLS - Pools that must be kept fully supplied in order
35 to guarantee timely completion of tests from builders.
36 SPARE_POOL - A low priority pool that is allowed to provide
37 spares to replace broken devices in the critical pools.
38 MANAGED_POOLS - The set of all the general purpose pools
39 monitored for health.
40 """
41 CRITICAL_POOLS = ['bvt', 'cq', 'continuous', 'cts', 'arc-presubmit']
42 SPARE_POOL = 'suites'
43 MANAGED_POOLS = CRITICAL_POOLS + [SPARE_POOL]
44
45
46class Builds:
47 """
48 Constants related to build type.
49
50 @var FIRMWARE_RW: The string indicating the given build is used to update
51 RW firmware.
52 @var CROS: The string indicating the given build is used to update ChromeOS.
53 """
54 FIRMWARE_RW = 'firmware_rw'
55 FIRMWARE_RO = 'firmware_ro'
56 CROS = 'cros'
Oleg Loskutoffc19f92b2019-10-17 15:44:16 -070057