blob: 1a6d9fe3cc7e01304871a458c6edcb8a93895005 [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
Dan Shi36cfd832014-10-10 13:38:51 -070010# Job keyvals for builds to be installed in dut and source of server-side tests.
11JOB_BUILDS_KEY = 'builds'
12JOB_TEST_SOURCE_BUILD_KEY = 'test_source_build'
13
Fang Deng2db96762013-10-03 16:45:31 -070014# Job keyval indicating whether a job is for an experimental test.
15JOB_EXPERIMENTAL_KEY = 'experimental'
Fang Denge3bc24b2014-03-17 15:19:46 -070016RETRY_ORIGINAL_JOB_ID = 'retry_original_job_id'
Fang Dengcbc01212014-11-25 16:09:46 -080017# Job keyval indicating the minimum duts required by the suite
18SUITE_MIN_DUTS_KEY = 'suite_min_duts'
Fang Deng2db96762013-10-03 16:45:31 -070019
Chris Masone44e4d6c2012-08-15 14:25:53 -070020# Job attribute and label names
Vadim Bendeburyab14bf12012-12-28 13:51:46 -080021EXPERIMENTAL_PREFIX = 'experimental_'
Dan Shi0723bf52015-06-24 10:52:38 -070022FW_RW_VERSION_PREFIX = 'fwrw-version:'
Chris Masone44e4d6c2012-08-15 14:25:53 -070023JOB_REPO_URL = 'job_repo_url'
24VERSION_PREFIX = 'cros-version:'
Simran Basi833814b2013-01-29 13:13:43 -080025BOARD_PREFIX = 'board:'
beepsc4fb1472013-05-08 21:49:48 -070026
Fang Deng60184032013-08-16 10:02:08 -070027# Bug filing
28ISSUE_OPEN = 'open'
29ISSUE_CLOSED = 'closed'
30ISSUE_DUPLICATE = 'Duplicate'
31ISSUE_MERGEDINTO = 'mergedInto'
32ISSUE_STATE = 'state'
33ISSUE_STATUS = 'status'
34
Chris Masone44e4d6c2012-08-15 14:25:53 -070035# Timings
36ARTIFACT_FINISHED_TIME = 'artifact_finished_time'
37DOWNLOAD_STARTED_TIME = 'download_started_time'
38PAYLOAD_FINISHED_TIME = 'payload_finished_time'
Alex Miller30837902013-02-02 15:52:43 -080039
40# Reimage type names
41# Please be very careful in changing or adding to these, as one needs to
42# maintain backwards compatibility.
43REIMAGE_TYPE_OS = 'os'
44REIMAGE_TYPE_FIRMWARE = 'firmware'
Prashanth Balasubramanianf571aa62014-10-13 18:09:44 -070045LATEST_BUILD_URL = 'gs://chromeos-image-archive/master-paladin/LATEST-master'
Simran Basi1e10e922015-04-16 15:09:56 -070046
47JOB_OFFLOAD_FAILURES_KEY = 'offload_failures_only'
48
49GS_OFFLOADER_INSTRUCTIONS = '.GS_OFFLOADER_INSTRUCTIONS'
Dan Shi70647ca2015-07-16 22:52:35 -070050GS_OFFLOADER_NO_OFFLOAD = 'no_offload'
51
52PARENT_JOB_ID = 'parent_job_id'