blob: abd574b0da46097b8e859ea2885d324f1a2c6e21 [file] [log] [blame]
Chris Masone44e4d6c2012-08-15 14:25:53 -07001# Copyright (c) 2012 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.
4
5
6# Job keyvals for finding debug symbols when processing crash dumps.
7JOB_BUILD_KEY = 'build'
8JOB_SUITE_KEY = 'suite'
9
Fang Deng2db96762013-10-03 16:45:31 -070010# Job keyval indicating whether a job is for an experimental test.
11JOB_EXPERIMENTAL_KEY = 'experimental'
12
Chris Masone44e4d6c2012-08-15 14:25:53 -070013# Job attribute and label names
Vadim Bendeburyab14bf12012-12-28 13:51:46 -080014EXPERIMENTAL_PREFIX = 'experimental_'
15FW_VERSION_PREFIX = 'fw-version:'
Chris Masone44e4d6c2012-08-15 14:25:53 -070016JOB_REPO_URL = 'job_repo_url'
17VERSION_PREFIX = 'cros-version:'
Simran Basi833814b2013-01-29 13:13:43 -080018BOARD_PREFIX = 'board:'
beepsc4fb1472013-05-08 21:49:48 -070019
Fang Deng60184032013-08-16 10:02:08 -070020# Bug filing
21ISSUE_OPEN = 'open'
22ISSUE_CLOSED = 'closed'
23ISSUE_DUPLICATE = 'Duplicate'
24ISSUE_MERGEDINTO = 'mergedInto'
25ISSUE_STATE = 'state'
26ISSUE_STATUS = 'status'
27
Chris Masone44e4d6c2012-08-15 14:25:53 -070028# Timings
29ARTIFACT_FINISHED_TIME = 'artifact_finished_time'
30DOWNLOAD_STARTED_TIME = 'download_started_time'
31PAYLOAD_FINISHED_TIME = 'payload_finished_time'
Alex Miller30837902013-02-02 15:52:43 -080032
33# Reimage type names
34# Please be very careful in changing or adding to these, as one needs to
35# maintain backwards compatibility.
36REIMAGE_TYPE_OS = 'os'
37REIMAGE_TYPE_FIRMWARE = 'firmware'