• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

android_ndk_darwin/23-Nov-2023-14467

android_ndk_linux/23-Nov-2023-14467

android_ndk_windows/23-Nov-2023-14969

android_sdk_linux/22-Nov-2023-14970

armhf_sysroot/22-Nov-2023-196102

bloaty/23-Nov-2023-14767

cast_toolchain/22-Nov-2023-6220

chromebook_arm_gles/22-Nov-2023-189101

chromebook_x86_64_gles/22-Nov-2023-189101

clang_linux/23-Nov-2023-187102

clang_win/23-Nov-2023-15069

cmake_linux/23-Nov-2023-14466

gcloud_linux/23-Nov-2023-16885

go/23-Nov-2023-13861

go_deps/23-Nov-2023-15171

linux_vulkan_sdk/23-Nov-2023-15978

lottie-samples/23-Nov-2023-13356

mesa_intel_driver_linux/23-Nov-2023-319187

mips64el_toolchain_linux/23-Nov-2023-196102

moltenvk/23-Nov-2023-7327

node/23-Nov-2023-14467

opencl_headers/23-Nov-2023-15369

opencl_intel_neo_linux/23-Nov-2023-17792

opencl_ocl_icd_linux/23-Nov-2023-15271

procdump_win/23-Nov-2023-14362

protoc/22-Nov-2023-14061

scripts/22-Nov-2023-13356

skimage/23-Nov-2023-14362

skp/23-Nov-2023-206115

svg/22-Nov-2023-17688

valgrind/22-Nov-2023-209118

win_ninja/23-Nov-2023-13761

win_toolchain/23-Nov-2023-17696

win_toolchain_2015/22-Nov-2023-4415

README.mdD22-Nov-20231.4 KiB4836

__init__.pyD22-Nov-2023157 70

asset_utils.pyD23-Nov-202311.5 KiB347277

asset_utils_test.pyD23-Nov-20237 KiB242140

assets.pyD23-Nov-20232.7 KiB9161

README.md

1Assets
2======
3
4This directory contains tooling for managing assets used by the bots.  The
5primary entry point is assets.py, which allows a user to add, remove, upload,
6and download assets.
7
8Assets are stored in Google Storage, named for their version number.
9
10
11Individual Assets
12-----------------
13
14Each asset has its own subdirectory with the following contents:
15* VERSION:  The current version number of the asset.
16* download.py:  Convenience script for downloading the current version of the asset.
17* upload.py:  Convenience script for uploading a new version of the asset.
18* [optional] create.py:  Script which creates the asset, implemented by the user.
19* [optional] create\_and\_upload.py:  Convenience script which combines create.py with upload.py.
20
21
22Examples
23-------
24
25Add a new asset and upload an initial version.
26
27```
28$ infra/bots/assets/assets.py add myasset
29Creating asset in infra/bots/assets/myasset
30Creating infra/bots/assets/myasset/download.py
31Creating infra/bots/assets/myasset/upload.py
32Creating infra/bots/assets/myasset/common.py
33Add script to automate creation of this asset? (y/n) n
34$ infra/bots/assets/myasset/upload.py -t ${MY_ASSET_LOCATION}
35$ git commit
36```
37
38Add an asset whose creation can be automated.
39
40```
41$ infra/bots/assets/assets.py add myasset
42Add script to automate creation of this asset? (y/n) y
43$ vi infra/bots/assets/myasset/create.py
44(implement the create_asset function)
45$ infra/bots/assets/myasset/create_and_upload.py
46$ git commit
47```
48