| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| android_ndk_darwin/ | 06-May-2025 | - | 42 | 23 | ||
| android_ndk_linux/ | 06-May-2025 | - | 42 | 23 | ||
| android_ndk_windows/ | 06-May-2025 | - | 42 | 23 | ||
| android_sdk_linux/ | 06-May-2025 | - | 103 | 55 | ||
| armhf_sysroot/ | 06-May-2025 | - | 88 | 55 | ||
| bazel/ | 06-May-2025 | - | 44 | 26 | ||
| bloaty/ | 06-May-2025 | - | 50 | 27 | ||
| cast_toolchain/ | 06-May-2025 | - | 1 | 1 | ||
| ccache_linux/ | 06-May-2025 | - | 51 | 28 | ||
| ccache_mac/ | 06-May-2025 | - | 52 | 28 | ||
| chromebook_arm_gles/ | 06-May-2025 | - | 145 | 82 | ||
| chromebook_x86_64_gles/ | 06-May-2025 | - | 145 | 82 | ||
| clang_linux/ | 06-May-2025 | - | 73 | 47 | ||
| clang_win/ | 06-May-2025 | - | 54 | 30 | ||
| cmake_linux/ | 06-May-2025 | - | 46 | 26 | ||
| cmake_mac/ | 06-May-2025 | - | 46 | 26 | ||
| cockroachdb/ | 06-May-2025 | - | 45 | 26 | ||
| gcloud_linux/ | 06-May-2025 | - | 73 | 43 | ||
| go/ | 06-May-2025 | - | 44 | 24 | ||
| go_win/ | 06-May-2025 | - | 45 | 24 | ||
| ios-dev-image-11.4/ | 06-May-2025 | - | 8 | 6 | ||
| ios-dev-image-12.4/ | 06-May-2025 | - | 8 | 6 | ||
| ios-dev-image-13.3/ | 06-May-2025 | - | 9 | 6 | ||
| ios-dev-image-13.4/ | 06-May-2025 | - | 9 | 6 | ||
| ios-dev-image-13.5/ | 06-May-2025 | - | 9 | 6 | ||
| ios-dev-image-13.6/ | 06-May-2025 | - | 9 | 6 | ||
| ios-dev-image-14.4/ | 06-May-2025 | - | 9 | 6 | ||
| linux_vulkan_sdk/ | 06-May-2025 | - | 55 | 34 | ||
| lottie-samples/ | 06-May-2025 | - | 29 | 12 | ||
| mesa_intel_driver_linux/ | 06-May-2025 | - | 178 | 106 | ||
| mockery/ | 06-May-2025 | - | 39 | 20 | ||
| mskp/ | 06-May-2025 | - | ||||
| node/ | 06-May-2025 | - | 42 | 23 | ||
| procdump_win/ | 06-May-2025 | - | 44 | 22 | ||
| protoc/ | 06-May-2025 | - | 36 | 17 | ||
| provisioning_profile_ios/ | 06-May-2025 | - | ||||
| scripts/ | 06-May-2025 | - | 136 | 59 | ||
| skimage/ | 06-May-2025 | - | 45 | 24 | ||
| skp/ | 06-May-2025 | - | 277 | 200 | ||
| skparagraph/ | 06-May-2025 | - | ||||
| svg/ | 06-May-2025 | - | 81 | 50 | ||
| text_blob_traces/ | 06-May-2025 | - | 42 | 26 | ||
| valgrind/ | 06-May-2025 | - | 109 | 77 | ||
| win_ninja/ | 06-May-2025 | - | 36 | 17 | ||
| win_toolchain/ | 06-May-2025 | - | 135 | 76 | ||
| xcode-11.4.1/ | 06-May-2025 | - | ||||
| README.md | D | 06-May-2025 | 1.2 KiB | 43 | 31 |
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* [optional] create.py: Script which creates the asset, implemented by the user and called by `sk asset upload`. 17* [optional] create\_and\_upload.py: User-implemented convenience script which wraps `sk asset upload` in whatever way makes sense for the asset. 18 19 20Examples 21------- 22 23Add a new asset and upload an initial version. 24 25``` 26$ sk asset add myasset 27Do you want to add a creation script for this asset? (y/n): n 28$ sk asset upload --in ${MY_ASSET_LOCATION} myasset 29$ git commit 30``` 31 32Add an asset whose creation can be automated. 33 34``` 35$ sk asset add myasset 36Do you want to add a creation script for this asset? (y/n): y 37Created infra/bots/assets/myasset/create.py; you will need to add implementation before uploading the asset. 38$ vi infra/bots/assets/myasset/create.py 39(implement the create_asset function) 40$ sk asset upload myasset 41$ git commit 42``` 43