| commit | d0d0d3c4706d3dc73dba17877776de241447a0f8 | [log] [tgz] |
|---|---|---|
| author | Ravi Mistry <rmistry@google.com> | Tue Oct 19 15:36:00 2021 -0400 |
| committer | SkCQ <skcq-be@skia-corp.google.com.iam.gserviceaccount.com> | Tue Oct 19 20:04:28 2021 +0000 |
| tree | 13dbadf1c7069b3b0316488282fc74f2fc18cef7 | |
| parent | b8ae0ee366576acefdb3d8d12327e25b6ee064c5 [diff] |
[skcq] Rename skcq-scaffold -> skcq-scaffold-sk Without this `make gazelle` fails during bazel conversion with: ``` gazelle: Not generating an sk_element_puppeteer_test rule for skcq/modules/skcq-scaffold/skcq-scaffold_puppeteer_test.ts because skcq/modules/skcq-scaffold does not follow the custom element directory naming convention (<app>/modules/<element name>-sk). ``` Bug: skia:12558 Change-Id: Ib35f3decf258976b3352944217a75efcd7857fd6 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/461061 Reviewed-by: Leandro Lovisolo <lovisolo@google.com> Commit-Queue: 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 \
Get mockery and add it to your PATH.
To generate code run in this directory:
$ go generate ./...
Install Cloud SDK.
Use this command to run the presubmit tests:
$ ./run_unittests --small