commit | e50f391cb9db315713ed4744db4ce40bef6b3954 | [log] [tgz] |
---|---|---|
author | skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com> | Wed Nov 30 04:01:13 2022 +0000 |
committer | SkCQ <skcq-be@skia-corp.google.com.iam.gserviceaccount.com> | Wed Nov 30 04:29:25 2022 +0000 |
tree | 64107ff704b5d8c9217d39d23e0be75895560ddb | |
parent | 51b3cbc90f03c7e8e97140d632479d188c578ae2 [diff] |
Roll Skia Infra CIPD packages from 26c653c9a2fc to 51b3cbc90f03 (8 revisions) https://skia.googlesource.com/buildbot.git/+log/26c653c9a2fc..51b3cbc90f03 2022-11-30 jcgregorio@google.com [machines] TMM sends Events to machineserver via HTTP POST. 2022-11-30 jcgregorio@google.com Stop trying to powercycle RPis after every task. 2022-11-29 lovisolo@google.com [gold] Handlers.fetchBaseline(): Add "AS OF SYSTEM TIME '-0.1s'" to SQL query. 2022-11-29 lovisolo@google.com [gold] baselineserver: Add crs and clID attributes to fetchBaseline span. 2022-11-29 erikrose@google.com Quit using sprintf unnecessarily in FlagPath(). 2022-11-29 erikrose@google.com Factor out Executable() and FlagPath() into testutils. 2022-11-29 lovisolo@google.com [gold] baselineserver: Add tracing support. 2022-11-29 skia-autoroll@skia-public.iam.gserviceaccount.com Roll Skia Infra CIPD packages from 34cc81bb5351 to 26c653c9a2fc (4 revisions) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-infra-cipd-infra Please CC rmistry@google.com on the revert to ensure that a human is aware of the problem. To file a bug in Skia Infra CIPD packages: https://bugs.chromium.org/p/skia/issues/entry To file a bug in Skia Infra: https://bugs.chromium.org/p/skia/issues/entry To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md Bug: None Tbr: rmistry@google.com Change-Id: I922108b6adf86d30dd1a467ff8712a90dfcab466 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/611132 Commit-Queue: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com> Bot-Commit: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.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
Using go get
will fetch the repository into your GOPATH directory along with all the Go dependencies. You will need to set GOPATH and GO111MODULE=on. E.g.:
$ export GOPATH=${WORKDIR} $ export GO111MODULE=on $ go get -u -t go.skia.org/infra/... $ cd ${GOPATH}/src/go.skia.org/infra/
Note: go.skia.org is a custom import path and will only work if used like the examples here.
Install Node.js (not as root) and add the bin dir to your path. Optionally run npm install npm -g
, as suggested by the npm getting started doc.
Install other dependencies:
$ sudo apt-get install \ jq \ python-django $ go get -u \ github.com/kisielk/errcheck \ golang.org/x/tools/cmd/goimports \ go.chromium.org/luci/client/cmd/isolate \ go get github.com/mikefarah/yq/v4
Build ~everything:
$ make all
Some code is generated using go generate
with external binaries. First, install the version of protoc referenced in the asset creation script and ensure it is on your PATH before other versions of protoc.
Install the necessary go packages:
$ go get -u \ github.com/golang/protobuf/protoc-gen-go \ golang.org/x/tools/cmd/stringer \ google.golang.org/grpc \
To generate code run in this directory:
$ go generate ./...
Install Cloud SDK.
Use this command to run the presubmit tests:
$ ./run_unittests --small