commit | 4ddb51f7fef1ab051d009c6ae7416c9832f92f0b | [log] [tgz] |
---|---|---|
author | Leandro Lovisolo <lovisolo@google.com> | Mon Nov 23 14:35:21 2020 -0500 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Mon Nov 23 20:04:25 2020 +0000 |
tree | 4716981577edaeb5b0e749c500b401d652cfed32 | |
parent | c9dcff5556501765c0e7318d9976491fa013db4d [diff] |
[bazel] Add test_on_env rule. This rule enables running tests that require setting up an environment (e.g. a web server, RPC server, etc.) before their execution. Puppeteer tests will be implemented on top of this rule by using a demo page server as the test environment. This rule is language-agnostic and works with any combination of *_binary and *_test targets. See the example tests. To run the example tests: # Runs the tests locally. $ bazel test //bazel/test_on_env/... # It works on RBE as well. $ bazel test --config=remote //bazel/test_on_env/... Inspired by http://go/test-on-env. Bug: skia:10614 Change-Id: I115cc42b7164aefcaf62c8faa971cfdd3044b74f Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/336736 Commit-Queue: Leandro Lovisolo <lovisolo@google.com> Reviewed-by: 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