commit | 282e486490ff5e707a95c0e9a3c5d9059729a241 | [log] [tgz] |
---|---|---|
author | Joe Gregorio <jcgregorio@google.com> | Wed Nov 09 00:48:49 2022 +0000 |
committer | SkCQ <skcq-be@skia-corp.google.com.iam.gserviceaccount.com> | Wed Nov 09 01:21:21 2022 +0000 |
tree | 4376eb512d2a8d10a8305325d5f9cc28000e4758 | |
parent | 1a3a7f52e8fca141d65541330db7da4eeb37bd0f [diff] |
Reland "[machines] Schedule every Android RPi for reboot after each task finishes." This reverts commit 497526fd086e2ee25c0f7fa127a89c91adcd8506. Reason for revert: Relanding. Original change's description: > Revert "[machines] Schedule every Android RPi for reboot after each task finishes." > > This reverts commit d64d49b44b4e5a66d56ec1c19ad74fd7a108e4c7. > > Reason for revert: Not needed, and may be causing jumphost issues. > > Original change's description: > > [machines] Schedule every Android RPi for reboot after each task finishes. > > > > Change-Id: Ibbae3ec934199d71bd223574411d8226cb892377 > > Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/598136 > > Commit-Queue: Joe Gregorio <jcgregorio@google.com> > > Reviewed-by: Ravi Mistry <rmistry@google.com> > > Auto-Submit: Joe Gregorio <jcgregorio@google.com> > > Commit-Queue: Ravi Mistry <rmistry@google.com> > > Change-Id: I654dc09af9351bdec7f21bac4165f3e49de3aff6 > Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/601696 > Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> > Commit-Queue: Ravi Mistry <rmistry@google.com> > Reviewed-by: Ravi Mistry <rmistry@google.com> Change-Id: I5e0c86b2989432118818ff5c52d2798122dcf8b4 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/602236 Commit-Queue: Joe Gregorio <jcgregorio@google.com> Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Reviewed-by: Ravi Mistry <rmistry@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
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