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/c47fcecdac30bcba61519acab4882b521af4ea9e Fix flaky gclient_smoketest. (tandrii@chromium.org)
recipe_engine:
  https://crrev.com/16a26b8a4218fab4320f63c4ddd27fb6471bcc55 Remove unused import. (tandrii@chromium.org)
  https://crrev.com/4f12504d84f212988adacdbf413051e1aaf5f61d Remove ability to set callback on nesting steps. (iannucci@chromium.org)
  https://crrev.com/5205e83b1f86731b1a2d9d4d403da415bc18029f cq: upgrade recipe_module to use protobuf message as input. (tandrii@chromium.org)


TBR=borenet@google.com

Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: I7c7cafd4b4e294b3203ff978e7758ea42ed47063
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/216122
Reviewed-by: Recipe Roller <recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com>
Commit-Queue: Recipe Roller <recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com>
2 files changed
tree: c3d1200c8088e1c38d245910cb514d37b61a8600
  1. am/
  2. android_compile/
  3. android_ingest/
  4. android_stats/
  5. api/
  6. appengine_scripts/
  7. autoroll/
  8. bash/
  9. blamer/
  10. chromeextensions/
  11. cmd/
  12. comments/
  13. common-sk/
  14. contestk/
  15. cq_watcher/
  16. ct/
  17. ct_pixel_diff/
  18. datahopper/
  19. debugger/
  20. debugger-assets/
  21. docker/
  22. docserverk/
  23. ds/
  24. fiddlek/
  25. firestore/
  26. fuzzer/
  27. get_service_account/
  28. git_cookie_authdaemon/
  29. gitsync/
  30. go/
  31. gold-client/
  32. golden/
  33. grafana/
  34. html-template-minifier/
  35. infra/
  36. infra-sk/
  37. jsdoc/
  38. jsfiddle/
  39. k8s_checker/
  40. kube/
  41. leasing/
  42. licenses/
  43. logmetrics/
  44. make/
  45. monitoring/
  46. named-fiddles/
  47. notifier/
  48. particles/
  49. perdiff/
  50. perf/
  51. periodic-trigger/
  52. power/
  53. prober/
  54. proberk/
  55. prometheus/
  56. promk/
  57. proxy/
  58. pulld/
  59. push/
  60. res/
  61. scripts/
  62. sheriff_emails/
  63. skfe/
  64. skolo/
  65. skottie/
  66. status/
  67. task_driver/
  68. task_scheduler/
  69. tools/
  70. tracedb/
  71. velero/
  72. webtools/
  73. .gitattributes
  74. .gitignore
  75. build_infra_prod.sh
  76. codereview.settings
  77. DATASTORE.md
  78. DEPS
  79. go.mod
  80. go.sum
  81. launch.md
  82. LICENSE
  83. Makefile
  84. PRESUBMIT.py
  85. PRIVACY_POLICY.md
  86. README.md
  87. run_unittests
  88. run_unittests.go
  89. STYLEGUIDE.md
  90. whitespace.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.git. It is possible to check out this repository directly with git clone or via go get:

$ cd ${WORKDIR}
$ git clone https://skia.googlesource.com/buildbot.git

or

$ go get -u -t go.skia.org/infra/...

The latter fetches the repository into your $GOPATH directory along with all the Go dependencies, while the former allows you to work in whatever directory you want. If you're working within GOPATH, you probably want to set this variable:

export GO111MODULE=on

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

Generated Code

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

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