commit | e5e0f6824931fddbd6c99e1e855bdecbfad011a3 | [log] [tgz] |
---|---|---|
author | Joe Gregorio <jcgregorio@google.com> | Tue Nov 03 14:46:32 2020 +0000 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Tue Nov 03 14:46:42 2020 +0000 |
tree | f3ba2497854d908ded18e8d7e10a0b78d494ff62 | |
parent | aa3bd9ddc63998f1eb37dacec759028430b275b3 [diff] |
Revert "Copy code from https://github.com/golang/perf/tree/master/internal/stats" This reverts commit 9a045f1d04a74d0723a642847bde4e02c02aa9f0. Reason for revert: Found the upstream code at github.com/aclements/go-moremath so there's no need to do this copy. Original change's description: > Copy code from https://github.com/golang/perf/tree/master/internal/stats > > Because we can't import an 'internal' directory. > > Since that code has been stable for close to four years, this seems relatively > safe. > > The code is copyright the Go authors using the Go License. See the added LICENSE > file. > > The only changes are: > 1. Add unittest.SmallTest() > 2. gofmt -s -w . > > Bug: skia:10884 > Change-Id: I8d1d922686762a9799cc7ed2d57867c498ce93ab > Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/331369 > Reviewed-by: Kevin Lubick <kjlubick@google.com> > Commit-Queue: Joe Gregorio <jcgregorio@google.com> TBR=jcgregorio@google.com,kjlubick@google.com Change-Id: I305c17737bf6696a3669fe3fd4e7ce6b6b389cc2 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia:10884 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/331556 Reviewed-by: Joe Gregorio <jcgregorio@google.com> Commit-Queue: Joe Gregorio <jcgregorio@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 python-django $ go get -u github.com/kisielk/errcheck \ golang.org/x/tools/cmd/goimports \ go.chromium.org/luci/client/cmd/isolate $ npm install -g polylint bower
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 \ github.com/vektra/mockery/...
To generate code run in this directory:
$ go generate ./...
Install Cloud SDK.
Use this command to run the presubmit tests:
$ ./run_unittests --small