[am] Link to an alert. Use this to goto an alert from silences.

Screenshot: https://screenshot.googleplex.com/BjqfCJpgqkZ8zKv.png

Bug: skia:10733
Change-Id: I59c8deba6f96e1b7d6e8d4ee569ace4cb8d23a4b
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/318337
Commit-Queue: Ravi Mistry <rmistry@google.com>
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
2 files changed
tree: dccb02c6e3ad68f3f9cb6faf9920a17e69c3ae61
  1. am/
  2. android_ingest/
  3. android_stats/
  4. api/
  5. autoroll/
  6. bash/
  7. blamer/
  8. chromeextensions/
  9. comments/
  10. contestk/
  11. cq_watcher/
  12. ct/
  13. datahopper/
  14. debugger/
  15. debugger-assets/
  16. demos/
  17. docker/
  18. docker_pushes_watcher/
  19. docs/
  20. docserverk/
  21. dot/
  22. ds/
  23. fiddlek/
  24. firestore/
  25. get_service_account/
  26. git_cookie_authdaemon/
  27. gitsync/
  28. go/
  29. gold-client/
  30. golden/
  31. hashtag/
  32. html-template-minifier/
  33. infra/
  34. infra-sk/
  35. jsdoc/
  36. jsfiddle/
  37. k8s-checker/
  38. kube/
  39. leasing/
  40. licenses/
  41. machine/
  42. make/
  43. named-fiddles/
  44. new_element/
  45. particles/
  46. perdiff/
  47. perf/
  48. periodic-trigger/
  49. power/
  50. proberk/
  51. promk/
  52. pulld/
  53. puppeteer-tests/
  54. push/
  55. res/
  56. scripts/
  57. sheriff_emails/
  58. sk8s/
  59. skbug/
  60. skfe/
  61. skolo/
  62. skottie/
  63. status/
  64. task_driver/
  65. task_scheduler/
  66. tools/
  67. tree_status/
  68. trybot_updater/
  69. velero/
  70. webtools/
  71. .bazelrc
  72. .eslintrc.js
  73. .gitattributes
  74. .gitignore
  75. .mocharc.json
  76. BUILD.bazel
  77. build_infra_prod.sh
  78. cipd.ensure
  79. codereview.settings
  80. DATASTORE.md
  81. DEPS
  82. go.mod
  83. go.sum
  84. launch.md
  85. LICENSE
  86. Makefile
  87. package-lock.json
  88. package.json
  89. PRESUBMIT.py
  90. PRIVACY_POLICY.md
  91. README.md
  92. run_unittests
  93. run_unittests.go
  94. STYLEGUIDE.md
  95. tools.go
  96. tsconfig.json
  97. whitespace.txt
  98. WORKSPACE
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.

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

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.

Use this command to run the presubmit tests:

$ ./run_unittests --small