tree: 2b249859ea6a9ef14db22c58611d50b329f61330 [path history] [tgz]
  1. android_ndk_darwin/
  2. android_ndk_linux/
  3. android_ndk_windows/
  4. android_sdk/
  5. armhf_sysroot/
  6. cast_toolchain/
  7. chromebook_arm_gles/
  8. clang_linux/
  9. go/
  10. linux_vulkan_intel_driver_debug/
  11. linux_vulkan_intel_driver_release/
  12. linux_vulkan_sdk/
  13. protoc/
  14. scripts/
  15. skimage/
  16. skp/
  17. svg/
  18. valgrind/
  19. win_toolchain/
  20. win_vulkan_sdk/
  21. __init__.py
  22. asset_utils.py
  23. asset_utils_test.py
  24. assets.py
  25. README.md
src/third_party/skia/infra/bots/assets/README.md

Assets

This directory contains tooling for managing assets used by the bots. The primary entry point is assets.py, which allows a user to add, remove, upload, and download assets.

Assets are stored in Google Storage, named for their version number.

Individual Assets

Each asset has its own subdirectory with the following contents:

  • VERSION: The current version number of the asset.
  • download.py: Convenience script for downloading the current version of the asset.
  • upload.py: Convenience script for uploading a new version of the asset.
  • [optional] create.py: Script which creates the asset, implemented by the user.
  • [optional] create_and_upload.py: Convenience script which combines create.py with upload.py.

Examples

Add a new asset and upload an initial version.

$ infra/bots/assets/assets.py add myasset
Creating asset in infra/bots/assets/myasset
Creating infra/bots/assets/myasset/download.py
Creating infra/bots/assets/myasset/upload.py
Creating infra/bots/assets/myasset/common.py
Add script to automate creation of this asset? (y/n) n
$ infra/bots/assets/myasset/upload.py -t ${MY_ASSET_LOCATION}
$ git commit

Add an asset whose creation can be automated.

$ infra/bots/assets/assets.py add myasset
Add script to automate creation of this asset? (y/n) y
$ vi infra/bots/assets/myasset/create.py
(implement the create_asset function)
$ infra/bots/assets/myasset/create_and_upload.py
$ git commit