[autoroll] Fix Google3 LastRollRev.

Change-Id: I90fd9c2513292061217ed699ce52f0f5e853569a
Reviewed-on: https://skia-review.googlesource.com/49745
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Ben Wagner <benjaminwagner@google.com>
2 files changed
tree: 9fe4956e87d1d5ab9858aa6bfe2aff392e881a46
  1. android_ingest/
  2. android_stats/
  3. appengine_scripts/
  4. autoroll/
  5. bash/
  6. blamer/
  7. chromeextensions/
  8. comments/
  9. contest/
  10. cq_watcher/
  11. ct/
  12. ct_pixel_diff/
  13. datahopper/
  14. datahopper_internal/
  15. debugger/
  16. doc/
  17. ds/
  18. fiddle/
  19. flakiness/
  20. fuzzer/
  21. get_service_account/
  22. go/
  23. golden/
  24. grafana/
  25. infra/
  26. logmetrics/
  27. misc/
  28. monitoring/
  29. pdfium/
  30. perdiff/
  31. perf/
  32. power/
  33. prober/
  34. prometheus/
  35. proxy/
  36. pulld/
  37. push/
  38. res/
  39. scripts/
  40. skfe/
  41. skolo/
  42. status/
  43. statusv2/
  44. swarming_logger/
  45. task_scheduler/
  46. tools/
  47. tracedb/
  48. webtools/
  49. .gitattributes
  50. .gitignore
  51. codereview.settings
  52. DATASTORE.md
  53. DEPS
  54. launch.md
  55. LICENSE
  56. Makefile
  57. PRESUBMIT.py
  58. README.md
  59. run_unittests
  60. run_unittests.go
  61. STYLEGUIDE.md
  62. whitespace.txt
  63. whitespace2.txt
README.md

Skia-Buildbot Repository

This repo contains infrastructure code for Skia.

Getting the Source Code

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 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

Database Setup for Testing

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

Running unit tests

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