db95dbe93c
Originally rolled out in https://skia-review.googlesource.com/c/skia/+/113265/ but currently flakes a bit and does not seem to provide any useful data. Change-Id: Id73e0d4e3b21190a85f0189fd2ed623ceb803e1e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/523356 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com> |
||
---|---|---|
.. | ||
android_ndk_darwin | ||
android_ndk_linux | ||
android_ndk_windows | ||
android_sdk_linux | ||
armhf_sysroot | ||
bazel | ||
bazelisk | ||
bloaty | ||
cast_toolchain | ||
ccache_linux | ||
ccache_mac | ||
chromebook_arm_gles | ||
chromebook_x86_64_gles | ||
clang_linux | ||
clang_win | ||
cmake_linux | ||
cmake_mac | ||
cockroachdb | ||
gcloud_linux | ||
go | ||
go_win | ||
ios-dev-image-11.4 | ||
ios-dev-image-13.3 | ||
ios-dev-image-13.4 | ||
ios-dev-image-13.5 | ||
ios-dev-image-13.6 | ||
ios-dev-image-14.4 | ||
linux_vulkan_sdk | ||
lottie-samples | ||
mesa_intel_driver_linux | ||
mockery | ||
mskp | ||
node | ||
protoc | ||
provisioning_profile_ios | ||
scripts | ||
skimage | ||
skp | ||
skparagraph | ||
svg | ||
text_blob_traces | ||
valgrind | ||
win_ninja | ||
win_toolchain | ||
xcode-11.4.1 | ||
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.
- [optional] create.py: Script which creates the asset, implemented by the user and called by
sk asset upload
. - [optional] create_and_upload.py: User-implemented convenience script which wraps
sk asset upload
in whatever way makes sense for the asset.
Examples
Add a new asset and upload an initial version.
$ sk asset add myasset
Do you want to add a creation script for this asset? (y/n): n
$ sk asset upload --in ${MY_ASSET_LOCATION} myasset
$ git commit
Add an asset whose creation can be automated.
$ sk asset add myasset
Do you want to add a creation script for this asset? (y/n): y
Created infra/bots/assets/myasset/create.py; you will need to add implementation before uploading the asset.
$ vi infra/bots/assets/myasset/create.py
(implement the create_asset function)
$ sk asset upload myasset
$ git commit