| commit | 9014f61eedc1855493ceb4e82bd3b061c44b743a | [log] [tgz] |
|---|---|---|
| author | recipe-roller <recipe-roller@chromium.org> | Mon Mar 04 00:25:08 2019 -0800 |
| committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Mon Mar 04 08:35:31 2019 +0000 |
| tree | a7ca323ee2374c8c8dfea677a04a765e114da8ce | |
| parent | 7243227ffdd2fea5144ac464c8f2392c9abe7cdb [diff] |
Roll recipe dependencies (trivial). This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug. depot_tools: https://crrev.com/e9e89e3aa538298f77e98da01bc36416118e9e88 Improve error message for missing gerrit credentials in git-cl. (whesse@google.com) https://crrev.com/da4dbf85f95051345f147cfe69d909d85e81a429 autoninja: limit j value for mac (tikuta@chromium.org) recipe_engine: https://crrev.com/ae3604f2d2ae0291ecdc690672cc173e06a965ba [proto_support] Handle unicode filesystem walks. (iannucci@chromium.org) TBR=borenet@google.com Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Change-Id: Iea03d3024ba50c73954d9a43b7b1f4beef917d55 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/196802 Reviewed-by: Recipe Roller <recipe-roller@chromium.org> Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
This repo contains infrastructure code for Skia.
The main source code repository is a Git repository hosted at https://skia.googlesource.com/buildbot. Although it is possible to check out this repository directly with git clone or using gclient fetch, it is preferred to use go get so that the code is arranged correctly for Go. If this is your first time working on Go code, read about the GOPATH environment variable. Make sure that $GOPATH/bin comes before /usr/bin in your PATH. If you have GOPATH set, run:
$ go get -u -t go.skia.org/infra/...
This fetches the repository into your $GOPATH directory along with all the Go dependencies. 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 from GOPATH:
$ cd $GOPATH/src/go.skia.org/infra/ $ 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 ./...
Tests which use the database package's testutils require you to have a MySQL instance running with a database named “sk_testing” and users called “readwrite” and “test_root” with appropriate permissions for sk_testing. The ‘setup_test_db’ script in ‘go/database’ is included for convenience in setting up this test database and user.
Go tests require a local installation of MySQL. For a Debian based distro:
$ sudo apt-get install mysql-client mysql-server
Leave the root password blank.
Then, to set up local versions of the production databases:
$ cd $GOPATH/src/go.skia.org/infra/go/database $ ./setup_test_db
Install Cloud SDK.
The installed python-django version must be >= 1.7. Run the following to update:
$ sudo pip install Django --upgrade
Use this command to run the presubmit tests:
$ ./run_unittests --small