commit | 14160bee80f44fdb8e84fced3bfec787a397e089 | [log] [tgz] |
---|---|---|
author | Jorge Betancourt <jmbetancourt@google.com> | Tue Nov 14 14:31:45 2023 -0500 |
committer | SkCQ <skcq-be@skia-corp.google.com.iam.gserviceaccount.com> | Wed Nov 15 14:47:56 2023 +0000 |
tree | 7bcb48f918d29d0c7565dd75b94daa904f068e3c | |
parent | 21ccee40c13405ec9b0d755777557ebdae69b810 [diff] |
enable image slot replacement for Skottie web player To utilize, package pngs and jpgs into zip file to be uploaded with lottie file. The drop down for image slot replacement will be populated with names of assets uploaded Also loosens restrictions on what a LottieAsset "needs" since we only really use id and p in the web player wrapper Change-Id: Icd0995562b26097faa45efdd779c4e03237c9b55 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/778300 Commit-Queue: Jorge Betancourt <jmbetancourt@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com>
This repo contains infrastructure code for Skia.
The main source code repository is a Git repository hosted at https://skia.googlesource.com/buildbot.git. It is possible to check out this repository directly with git clone
or via go get
.
Using git clone
allows you to work in whatever directory you want. You will still need to set GOPATH in order to build some apps (recommended to put this in a cache dir). E.g.:
$ cd ${WORKDIR} $ git clone https://skia.googlesource.com/buildbot.git $ export GOPATH=${HOME}/.cache/gopath/$(basename ${WORKDIR}) $ mkdir $GOPATH $ cd buildbot
Almost all applications are built with Bazel, and bazelisk is the recommended tool to ensure you have the right version of bazel installed:
go install github.com/bazelbuild/bazelisk@latest go install github.com/bazelbuild/buildtools/buildifier@latest go install github.com/kisielk/errcheck@latest go install golang.org/x/tools/cmd/goimports@latest go install github.com/mikefarah/yq/v4@latest go install go.chromium.org/luci/client/cmd/...@latest
sudo apt-get install jq
bazelisk build --config=mayberemote //...
bazelisk test --config=mayberemote //...
To update generated code run the following in any directory:
go generate ./...
Install Cloud SDK.
Use this command to run the presubmit tests:
./run_unittests --small