blob: 044e27c29ae13dea8443cc1873d49ba06a7f617e [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 Shidac462f2015-08-14 11:07:32 -070022FWRW_BUILD = 'fwrw_build'
23FWRO_BUILD = 'fwro_build'
Chris Masone44e4d6c2012-08-15 14:25:53 -070024JOB_REPO_URL = 'job_repo_url'
25VERSION_PREFIX = 'cros-version:'
Simran Basi833814b2013-01-29 13:13:43 -080026BOARD_PREFIX = 'board:'
Kevin Cheng84a71ba2016-07-14 11:03:57 -070027OS_PREFIX = 'os'
beepsc4fb1472013-05-08 21:49:48 -070028
Fang Deng60184032013-08-16 10:02:08 -070029# Bug filing
30ISSUE_OPEN = 'open'
31ISSUE_CLOSED = 'closed'
32ISSUE_DUPLICATE = 'Duplicate'
33ISSUE_MERGEDINTO = 'mergedInto'
34ISSUE_STATE = 'state'
35ISSUE_STATUS = 'status'
36
Chris Masone44e4d6c2012-08-15 14:25:53 -070037# Timings
38ARTIFACT_FINISHED_TIME = 'artifact_finished_time'
39DOWNLOAD_STARTED_TIME = 'download_started_time'
40PAYLOAD_FINISHED_TIME = 'payload_finished_time'
Alex Miller30837902013-02-02 15:52:43 -080041
42# Reimage type names
43# Please be very careful in changing or adding to these, as one needs to
44# maintain backwards compatibility.
45REIMAGE_TYPE_OS = 'os'
46REIMAGE_TYPE_FIRMWARE = 'firmware'
Prashanth Balasubramanianf571aa62014-10-13 18:09:44 -070047LATEST_BUILD_URL = 'gs://chromeos-image-archive/master-paladin/LATEST-master'
Simran Basi1e10e922015-04-16 15:09:56 -070048
49JOB_OFFLOAD_FAILURES_KEY = 'offload_failures_only'
50
51GS_OFFLOADER_INSTRUCTIONS = '.GS_OFFLOADER_INSTRUCTIONS'
Dan Shi70647ca2015-07-16 22:52:35 -070052GS_OFFLOADER_NO_OFFLOAD = 'no_offload'
53
Dan Shidac462f2015-08-14 11:07:32 -070054PARENT_JOB_ID = 'parent_job_id'