blob: 5ed5cd134e90cf6358db262b41f5e8181b5b4665 [file] [log] [blame]
Luis Hector Chavezdca9dd72018-06-12 19:56:301# -*- coding: utf-8 -*-
Chris Sosa76e44b92013-01-31 20:11:382# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""Module contains a list of artifact name related constants and methods."""
7
8############ Artifact Names ############
9
Chris Sosa6b0c6172013-08-06 00:01:3310# Note these are the available 'artifacts' that are known to the devserver. If
11# you just need to stage a file from gs directly, use the files api. See the
12# stage documentation for more info.
13
Chris Sosa76e44b92013-01-31 20:11:3814#### Update payload names. ####
15
16# The name of artifact to stage a full update payload.
17FULL_PAYLOAD = 'full_payload'
18
19# The name of the artifact to stage all delta payloads for a build.
20DELTA_PAYLOADS = 'delta_payloads'
21
22# The payload containing stateful data not stored on the rootfs of the image.
23STATEFUL_PAYLOAD = 'stateful'
24
25#### The following are the names of images to stages. ####
26
27# The base image i.e. the image without any test/developer enhancements.
28BASE_IMAGE = 'base_image'
29
30# The recovery image - the image used to recover a chromiumos device.
31RECOVERY_IMAGE = 'recovery_image'
32
Luis Hector Chavezdca9dd72018-06-12 19:56:3033# The image that has been signed and can be pushed to regular Chrome OS users.
34SIGNED_IMAGE = 'signed_image'
35
Chris Sosa76e44b92013-01-31 20:11:3836# The test image - the base image with both develolper and test enhancements.
37TEST_IMAGE = 'test_image'
38
Chris Sosa75490802013-10-01 00:21:4539# The developer image - the base image with developer enhancements.
40DEV_IMAGE = 'dev_image'
41
David Riley0655bab2017-11-02 17:44:2642# The name of artifact to stage a quick provision payload.
43QUICK_PROVISION = 'quick_provision'
44
Chris Sosa76e44b92013-01-31 20:11:3845#### Autotest related packages. ####
46
47# Autotest -- the main autotest directory without the test_suites subdir.
48AUTOTEST = 'autotest'
49
Simran Basiea0590d2014-10-29 18:31:2650# Control Files -- the autotest control files without the test_suites subdir.
51CONTROL_FILES = 'control_files'
52
53# Autotest Packages-- the autotest packages subdirectory.
54AUTOTEST_PACKAGES = 'autotest_packages'
55
Simran Basi6459bba2015-02-04 22:47:2356# Autotest Server Package.
57AUTOTEST_SERVER_PACKAGE = 'autotest_server_package'
58
Chris Sosa76e44b92013-01-31 20:11:3859# Test Suites - just the test suites control files from the autotest directory.
60TEST_SUITES = 'test_suites'
61
62# AU Suite - The control files for the autotest autoupdate suite.
63AU_SUITE = 'au_suite'
64
Chris Sosa968a1062013-08-03 00:42:5065# AU Suite - The control files for the paygen autoupdate suite (depends
66# on channel defined in devserver_constants).
67PAYGEN_AU_SUITE_TEMPLATE = 'paygen_au_%(channel)s_suite'
Chris Sosa5d1b0792013-07-31 17:54:5268
Chris Sosa76e44b92013-01-31 20:11:3869#### Miscellaneous artifacts. ####
70
71# Firmware tarball.
72FIRMWARE = 'firmware'
73
74# Tarball containing debug symbols for the given build.
75SYMBOLS = 'symbols'
76
Dan Shi55d0f972016-10-04 18:45:0077# A compressed tarball containing only sym files of debug symbols for the
78# given build.
79SYMBOLS_ONLY = 'symbols_only'
80
beepsc3d0f872013-08-01 04:50:4081# The factory test image.
82FACTORY_IMAGE = 'factory_image'
Chris Sosa76e44b92013-01-31 20:11:3883
Mike Frysingera0e6a282016-09-01 21:29:0884# The factory shim image.
85FACTORY_SHIM_IMAGE = 'factory_shim_image'
86
Justin Giorgib7590522017-02-07 21:36:2487#### Libiota Artifacts. These are in the same namespace as the above. ####
88
89# Archive with test binaries for flashing to the DUT.
90LIBIOTA_TEST_BINARIES = 'libiota_test_binaries'
91
92# Utilities required for managing the DUT.
93LIBIOTA_BOARD_UTILS = 'libiota_board_utils'
94
Gabe Black3b567202015-09-23 21:07:5995#### Android artifacts. These are in a different namespace from the above. ####
96
97# Various android images stored in a zip file (including boot and system).
98# For example, shamu-img-2284311.zip contains boot.img, cache.img, recovery.img,
99# system.img and userdata.img. fastboot can use the zip file to update the dut
100# in a single command. Therefore, devserver does not unzip the zip file to avoid
101# unnecessary load on the devserver.
102ANDROID_ZIP_IMAGES = 'zip_images'
103
104# Radio image.
105ANDROID_RADIO_IMAGE = 'radio_image'
106
107# Bootloader image.
108ANDROID_BOOTLOADER_IMAGE = 'bootloader_image'
109
110# fastboot, utility to flash image to Android device.
111ANDROID_FASTBOOT = 'fastboot'
112
113# Test zip file for Android build, e.g., shamu-tests-2284311.zip
114ANDROID_TEST_ZIP = 'test_zip'
115
Dan Shi74136ae2015-12-01 22:40:06116# Zip file of vendor partitions used by Brillo device.
117ANDROID_VENDOR_PARTITION_ZIP = 'vendor_partitions'
118
Simran Basi05be7212016-03-16 20:08:23119# Zip file of native tests used by Android devices.
120ANDROID_NATIVETESTS_ZIP = 'nativetests'
Ralph Nathan6c7fe5e2016-06-22 22:50:10121ANDROID_CONTINUOUS_NATIVE_TESTS_ZIP = 'continuous_native_tests'
Justin Giorgibb32ac42016-08-04 17:34:35122ANDROID_CONTINUOUS_INSTRUMENTATION_TESTS_ZIP = (
123 'continuous_instrumentation_tests')
Justin Giorgi4faa8902016-08-20 02:54:30124ANDROID_CTS_ZIP = 'android-cts'
Simran Basi05be7212016-03-16 20:08:23125
Justin Giorgi576c1542016-06-24 15:24:20126# Zip file including all target files and images
127ANDROID_TARGET_FILES_ZIP = 'target_files'
128
129# Zip file containing DTB for emulators
130ANDROID_DTB_ZIP = 'dtb'
131
Satoshi Niwa5e3ed5e2018-06-25 07:03:33132# Zip file containing push_to_device.py and tools it depends on
133ANDROID_PUSH_TO_DEVICE_ZIP = 'push_to_device_zip'
134
Qijiang Fan31beb7f2018-06-26 08:09:00135# Zip file containing selinux policy files.
136ANDROID_SEPOLICY_ZIP = 'sepolicy.zip'
137
Chris Sosa76e44b92013-01-31 20:11:38138# In general, downloading one artifact usually indicates that the caller will
139# want to download other artifacts later. The following map explicitly defines
140# this relationship. Specifically:
141# If X is requested, all items in Y should also get triggered for download.
Dan Shi6c2b2a22016-03-04 23:52:19142CROS_REQUESTED_TO_OPTIONAL_MAP = {
Simran Basi4243a862014-12-12 20:48:33143 TEST_SUITES: [CONTROL_FILES, AUTOTEST_PACKAGES],
Chris Sosa76e44b92013-01-31 20:11:38144}
Dan Shi6c2b2a22016-03-04 23:52:19145# Launch Control builds do not support autotest package.
146ANDROID_REQUESTED_TO_OPTIONAL_MAP = {
147 TEST_SUITES: [CONTROL_FILES],
148}
Dan Shi2f136862016-02-11 23:38:38149
150# Map between the artifact name and the folder after it's unzipped.
151ARTIFACT_UNZIP_FOLDER_MAP = {
152 ANDROID_TEST_ZIP: 'DATA',
153}