Chris Masone | 44e4d6c | 2012-08-15 14:25:53 -0700 | [diff] [blame] | 1 | # 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. |
| 7 | JOB_BUILD_KEY = 'build' |
| 8 | JOB_SUITE_KEY = 'suite' |
| 9 | |
Dan Shi | 36cfd83 | 2014-10-10 13:38:51 -0700 | [diff] [blame] | 10 | # Job keyvals for builds to be installed in dut and source of server-side tests. |
| 11 | JOB_BUILDS_KEY = 'builds' |
| 12 | JOB_TEST_SOURCE_BUILD_KEY = 'test_source_build' |
| 13 | |
Fang Deng | 2db9676 | 2013-10-03 16:45:31 -0700 | [diff] [blame] | 14 | # Job keyval indicating whether a job is for an experimental test. |
| 15 | JOB_EXPERIMENTAL_KEY = 'experimental' |
Fang Deng | e3bc24b | 2014-03-17 15:19:46 -0700 | [diff] [blame] | 16 | RETRY_ORIGINAL_JOB_ID = 'retry_original_job_id' |
Fang Deng | cbc0121 | 2014-11-25 16:09:46 -0800 | [diff] [blame] | 17 | # Job keyval indicating the minimum duts required by the suite |
| 18 | SUITE_MIN_DUTS_KEY = 'suite_min_duts' |
Fang Deng | 2db9676 | 2013-10-03 16:45:31 -0700 | [diff] [blame] | 19 | |
Chris Masone | 44e4d6c | 2012-08-15 14:25:53 -0700 | [diff] [blame] | 20 | # Job attribute and label names |
Vadim Bendebury | ab14bf1 | 2012-12-28 13:51:46 -0800 | [diff] [blame] | 21 | EXPERIMENTAL_PREFIX = 'experimental_' |
Dan Shi | 0723bf5 | 2015-06-24 10:52:38 -0700 | [diff] [blame] | 22 | FW_RW_VERSION_PREFIX = 'fwrw-version:' |
Chris Masone | 44e4d6c | 2012-08-15 14:25:53 -0700 | [diff] [blame] | 23 | JOB_REPO_URL = 'job_repo_url' |
| 24 | VERSION_PREFIX = 'cros-version:' |
Simran Basi | 833814b | 2013-01-29 13:13:43 -0800 | [diff] [blame] | 25 | BOARD_PREFIX = 'board:' |
beeps | c4fb147 | 2013-05-08 21:49:48 -0700 | [diff] [blame] | 26 | |
Fang Deng | 6018403 | 2013-08-16 10:02:08 -0700 | [diff] [blame] | 27 | # Bug filing |
| 28 | ISSUE_OPEN = 'open' |
| 29 | ISSUE_CLOSED = 'closed' |
| 30 | ISSUE_DUPLICATE = 'Duplicate' |
| 31 | ISSUE_MERGEDINTO = 'mergedInto' |
| 32 | ISSUE_STATE = 'state' |
| 33 | ISSUE_STATUS = 'status' |
| 34 | |
Chris Masone | 44e4d6c | 2012-08-15 14:25:53 -0700 | [diff] [blame] | 35 | # Timings |
| 36 | ARTIFACT_FINISHED_TIME = 'artifact_finished_time' |
| 37 | DOWNLOAD_STARTED_TIME = 'download_started_time' |
| 38 | PAYLOAD_FINISHED_TIME = 'payload_finished_time' |
Alex Miller | 3083790 | 2013-02-02 15:52:43 -0800 | [diff] [blame] | 39 | |
| 40 | # Reimage type names |
| 41 | # Please be very careful in changing or adding to these, as one needs to |
| 42 | # maintain backwards compatibility. |
| 43 | REIMAGE_TYPE_OS = 'os' |
| 44 | REIMAGE_TYPE_FIRMWARE = 'firmware' |
Prashanth Balasubramanian | f571aa6 | 2014-10-13 18:09:44 -0700 | [diff] [blame] | 45 | LATEST_BUILD_URL = 'gs://chromeos-image-archive/master-paladin/LATEST-master' |
Simran Basi | 1e10e92 | 2015-04-16 15:09:56 -0700 | [diff] [blame] | 46 | |
| 47 | JOB_OFFLOAD_FAILURES_KEY = 'offload_failures_only' |
| 48 | |
| 49 | GS_OFFLOADER_INSTRUCTIONS = '.GS_OFFLOADER_INSTRUCTIONS' |
Dan Shi | 70647ca | 2015-07-16 22:52:35 -0700 | [diff] [blame^] | 50 | GS_OFFLOADER_NO_OFFLOAD = 'no_offload' |
| 51 | |
| 52 | PARENT_JOB_ID = 'parent_job_id' |