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