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/affd410d415a1bb443b695b673e8175c3f0bcd4c gclient: Report only the origin to metrics collection. (ehmaldonado@chromium.org)
  https://crrev.com/822dbc51a298688c61e4dd8c40fbc714e1460663 Reland "gclient: Require a target ref when applying patches." (ehmaldonado@chromium.org)
  https://crrev.com/42b03c34539b29f2018295486724904f5549e2a4 Revert "Reland "gclient: Require a target ref when applying patches."" (ehmaldonado@chromium.org)
recipe_engine:
  https://crrev.com/5e72c468299a968684d6d458536719dc41085faf [buildbucket] Field mask in schedule requests (nodir@google.com)
  https://crrev.com/6e79d3e9d3b185a31cb4720498b13677f73378a6 Revert "[isolated] Roll client" (joshuaseaton@google.com)


TBR=borenet@google.com

Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: Ice554cc40a4f3a28525a208c3f0133da1f96d22d
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/219339
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: 3e8cac4eaefda46d9c9b8ca6c79e106c80e0d2c7
  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. datahopper/
  18. debugger/
  19. debugger-assets/
  20. docker/
  21. docserverk/
  22. ds/
  23. fiddlek/
  24. firestore/
  25. fuzzer/
  26. get_service_account/
  27. git_cookie_authdaemon/
  28. gitsync/
  29. go/
  30. gold-client/
  31. golden/
  32. grafana/
  33. html-template-minifier/
  34. infra/
  35. infra-sk/
  36. jsdoc/
  37. jsfiddle/
  38. k8s_checker/
  39. kube/
  40. leasing/
  41. licenses/
  42. logmetrics/
  43. make/
  44. monitoring/
  45. named-fiddles/
  46. notifier/
  47. particles/
  48. perdiff/
  49. perf/
  50. periodic-trigger/
  51. power/
  52. prober/
  53. proberk/
  54. prometheus/
  55. promk/
  56. proxy/
  57. pulld/
  58. push/
  59. res/
  60. scripts/
  61. sheriff_emails/
  62. skfe/
  63. skolo/
  64. skottie/
  65. status/
  66. task_driver/
  67. task_scheduler/
  68. tools/
  69. tracedb/
  70. velero/
  71. webtools/
  72. .gitattributes
  73. .gitignore
  74. build_infra_prod.sh
  75. codereview.settings
  76. DATASTORE.md
  77. DEPS
  78. go.mod
  79. go.sum
  80. launch.md
  81. LICENSE
  82. Makefile
  83. PRESUBMIT.py
  84. PRIVACY_POLICY.md
  85. README.md
  86. run_unittests
  87. run_unittests.go
  88. STYLEGUIDE.md
  89. 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