blob: 4c0484a7e2fb4be50194c622943dadb10ec81efd [file] [log] [blame]
Chris Sosa76e44b92013-01-31 12:11:38 -08001# Copyright (c) 2013 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"""Module contains a list of artifact name related constants and methods."""
6
7############ Artifact Names ############
8
Chris Sosa6b0c6172013-08-05 17:01:33 -07009# Note these are the available 'artifacts' that are known to the devserver. If
10# you just need to stage a file from gs directly, use the files api. See the
11# stage documentation for more info.
12
Chris Sosa76e44b92013-01-31 12:11:38 -080013#### Update payload names. ####
14
15# The name of artifact to stage a full update payload.
16FULL_PAYLOAD = 'full_payload'
17
18# The name of the artifact to stage all delta payloads for a build.
19DELTA_PAYLOADS = 'delta_payloads'
20
21# The payload containing stateful data not stored on the rootfs of the image.
22STATEFUL_PAYLOAD = 'stateful'
23
24#### The following are the names of images to stages. ####
25
26# The base image i.e. the image without any test/developer enhancements.
27BASE_IMAGE = 'base_image'
28
29# The recovery image - the image used to recover a chromiumos device.
30RECOVERY_IMAGE = 'recovery_image'
31
32# The test image - the base image with both develolper and test enhancements.
33TEST_IMAGE = 'test_image'
34
Chris Sosa75490802013-09-30 17:21:45 -070035# The developer image - the base image with developer enhancements.
36DEV_IMAGE = 'dev_image'
37
Chris Sosa76e44b92013-01-31 12:11:38 -080038#### Autotest related packages. ####
39
40# Autotest -- the main autotest directory without the test_suites subdir.
41AUTOTEST = 'autotest'
42
Simran Basiea0590d2014-10-29 11:31:26 -070043# Control Files -- the autotest control files without the test_suites subdir.
44CONTROL_FILES = 'control_files'
45
46# Autotest Packages-- the autotest packages subdirectory.
47AUTOTEST_PACKAGES = 'autotest_packages'
48
Simran Basi6459bba2015-02-04 14:47:23 -080049# Autotest Server Package.
50AUTOTEST_SERVER_PACKAGE = 'autotest_server_package'
51
Chris Sosa76e44b92013-01-31 12:11:38 -080052# Test Suites - just the test suites control files from the autotest directory.
53TEST_SUITES = 'test_suites'
54
55# AU Suite - The control files for the autotest autoupdate suite.
56AU_SUITE = 'au_suite'
57
Chris Sosa968a1062013-08-02 17:42:50 -070058# AU Suite - The control files for the paygen autoupdate suite (depends
59# on channel defined in devserver_constants).
60PAYGEN_AU_SUITE_TEMPLATE = 'paygen_au_%(channel)s_suite'
Chris Sosa5d1b0792013-07-31 10:54:52 -070061
Chris Sosa76e44b92013-01-31 12:11:38 -080062#### Miscellaneous artifacts. ####
63
64# Firmware tarball.
65FIRMWARE = 'firmware'
66
67# Tarball containing debug symbols for the given build.
68SYMBOLS = 'symbols'
69
Dan Shi55d0f972016-10-04 11:45:00 -070070# A compressed tarball containing only sym files of debug symbols for the
71# given build.
72SYMBOLS_ONLY = 'symbols_only'
73
beepsc3d0f872013-07-31 21:50:40 -070074# The factory test image.
75FACTORY_IMAGE = 'factory_image'
Chris Sosa76e44b92013-01-31 12:11:38 -080076
Mike Frysingera0e6a282016-09-01 17:29:08 -040077# The factory shim image.
78FACTORY_SHIM_IMAGE = 'factory_shim_image'
79
Gabe Black3b567202015-09-23 14:07:59 -070080#### Android artifacts. These are in a different namespace from the above. ####
81
82# Various android images stored in a zip file (including boot and system).
83# For example, shamu-img-2284311.zip contains boot.img, cache.img, recovery.img,
84# system.img and userdata.img. fastboot can use the zip file to update the dut
85# in a single command. Therefore, devserver does not unzip the zip file to avoid
86# unnecessary load on the devserver.
87ANDROID_ZIP_IMAGES = 'zip_images'
88
89# Radio image.
90ANDROID_RADIO_IMAGE = 'radio_image'
91
92# Bootloader image.
93ANDROID_BOOTLOADER_IMAGE = 'bootloader_image'
94
95# fastboot, utility to flash image to Android device.
96ANDROID_FASTBOOT = 'fastboot'
97
98# Test zip file for Android build, e.g., shamu-tests-2284311.zip
99ANDROID_TEST_ZIP = 'test_zip'
100
Dan Shi74136ae2015-12-01 14:40:06 -0800101# Zip file of vendor partitions used by Brillo device.
102ANDROID_VENDOR_PARTITION_ZIP = 'vendor_partitions'
103
Simran Basi05be7212016-03-16 13:08:23 -0700104# Zip file of native tests used by Android devices.
105ANDROID_NATIVETESTS_ZIP = 'nativetests'
Ralph Nathan6c7fe5e2016-06-22 15:50:10 -0700106ANDROID_CONTINUOUS_NATIVE_TESTS_ZIP = 'continuous_native_tests'
Justin Giorgibb32ac42016-08-04 10:34:35 -0700107ANDROID_CONTINUOUS_INSTRUMENTATION_TESTS_ZIP = (
108 'continuous_instrumentation_tests')
Justin Giorgi4faa8902016-08-19 19:54:30 -0700109ANDROID_CTS_ZIP = 'android-cts'
Simran Basi05be7212016-03-16 13:08:23 -0700110
Justin Giorgi576c1542016-06-24 08:24:20 -0700111# Zip file including all target files and images
112ANDROID_TARGET_FILES_ZIP = 'target_files'
113
114# Zip file containing DTB for emulators
115ANDROID_DTB_ZIP = 'dtb'
116
Chris Sosa76e44b92013-01-31 12:11:38 -0800117# In general, downloading one artifact usually indicates that the caller will
118# want to download other artifacts later. The following map explicitly defines
119# this relationship. Specifically:
120# If X is requested, all items in Y should also get triggered for download.
Dan Shi6c2b2a22016-03-04 15:52:19 -0800121CROS_REQUESTED_TO_OPTIONAL_MAP = {
Simran Basi4243a862014-12-12 12:48:33 -0800122 TEST_SUITES: [CONTROL_FILES, AUTOTEST_PACKAGES],
Chris Sosa76e44b92013-01-31 12:11:38 -0800123}
Dan Shi6c2b2a22016-03-04 15:52:19 -0800124# Launch Control builds do not support autotest package.
125ANDROID_REQUESTED_TO_OPTIONAL_MAP = {
126 TEST_SUITES: [CONTROL_FILES],
127}
Dan Shi2f136862016-02-11 15:38:38 -0800128
129# Map between the artifact name and the folder after it's unzipped.
130ARTIFACT_UNZIP_FOLDER_MAP = {
131 ANDROID_TEST_ZIP: 'DATA',
132}