commit | 5a2d93cc6d140aeeef7797e9c05cfabcec6c3bfa | [log] [tgz] |
---|---|---|
author | Ashwin Verleker <ashwinpv@google.com> | Fri Jan 26 23:17:04 2024 +0000 |
committer | SkCQ <skcq-be@skia-corp.google.com.iam.gserviceaccount.com> | Sat Jan 27 00:35:34 2024 +0000 |
tree | 5fd00801c76aad2c90af5d9223ff117aa5de4057 | |
parent | 29d65c5e2204f20722021f769813f31276682a06 [diff] |
Allow mouse-wheel scrolling over plots when in multi graph view. - Currently if the mouse hovers over a plot, the scrolling action is related to zoom over the plot. This disables page scrolling. - While this is okay when there is a single plot, the experience is kind of annoying in a multi graph view where it is common to scroll up and down looking at multiple graphs. - This CL adds an attribute to the plot-simple-sk and sets it in the multi graph view. The regular explore view remains unchanged. Bug: b/309172104 Change-Id: I61eb40120ad1a3feb9b515c7180d24c41cf0e70b Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/805925 Reviewed-by: Eduardo Yap <eduardoyap@google.com> Commit-Queue: Ashwin Verleker <ashwinpv@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