blob: 4b0776e4deeb41d19ee8388a57b66cbe00321683 [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'
Fang Denge3bc24b2014-03-17 15:19:46 -070012RETRY_ORIGINAL_JOB_ID = 'retry_original_job_id'
Fang Deng2db96762013-10-03 16:45:31 -070013
Chris Masone44e4d6c2012-08-15 14:25:53 -070014# Job attribute and label names
Vadim Bendeburyab14bf12012-12-28 13:51:46 -080015EXPERIMENTAL_PREFIX = 'experimental_'
16FW_VERSION_PREFIX = 'fw-version:'
Chris Masone44e4d6c2012-08-15 14:25:53 -070017JOB_REPO_URL = 'job_repo_url'
18VERSION_PREFIX = 'cros-version:'
Simran Basi833814b2013-01-29 13:13:43 -080019BOARD_PREFIX = 'board:'
beepsc4fb1472013-05-08 21:49:48 -070020
Fang Deng60184032013-08-16 10:02:08 -070021# Bug filing
22ISSUE_OPEN = 'open'
23ISSUE_CLOSED = 'closed'
24ISSUE_DUPLICATE = 'Duplicate'
25ISSUE_MERGEDINTO = 'mergedInto'
26ISSUE_STATE = 'state'
27ISSUE_STATUS = 'status'
28
Chris Masone44e4d6c2012-08-15 14:25:53 -070029# Timings
30ARTIFACT_FINISHED_TIME = 'artifact_finished_time'
31DOWNLOAD_STARTED_TIME = 'download_started_time'
32PAYLOAD_FINISHED_TIME = 'payload_finished_time'
Alex Miller30837902013-02-02 15:52:43 -080033
34# Reimage type names
35# Please be very careful in changing or adding to these, as one needs to
36# maintain backwards compatibility.
37REIMAGE_TYPE_OS = 'os'
38REIMAGE_TYPE_FIRMWARE = 'firmware'