Add flag.Parse to use flag in configuring cloud logging

Bug: skia:
Change-Id: I499d2e475732595b38b0f810c955e26efe4ab5d5
Reviewed-on: https://skia-review.googlesource.com/14655
Reviewed-by: Stephan Altmueller <stephana@google.com>
Commit-Queue: Stephan Altmueller <stephana@google.com>
3 files changed
tree: f5cbbbaab4f7ac8db97cbdac85553d5eb676c028
  1. android_ingest/
  2. android_stats/
  3. appengine_scripts/
  4. autoroll/
  5. bash/
  6. blamer/
  7. chromeextensions/
  8. comments/
  9. compute_engine_scripts/
  10. cq_watcher/
  11. ct/
  12. datahopper/
  13. datahopper_internal/
  14. debugger/
  15. doc/
  16. fiddle/
  17. flakiness/
  18. fuzzer/
  19. get_service_account/
  20. go/
  21. golden/
  22. grafana/
  23. imageinfo/
  24. infra/
  25. logmetrics/
  26. misc/
  27. pdfium/
  28. perdiff/
  29. perf/
  30. prober/
  31. prometheus/
  32. proxy/
  33. pulld/
  34. push/
  35. res/
  36. scripts/
  37. skfe/
  38. skolo/
  39. status/
  40. swarming_logger/
  41. task_scheduler/
  42. tools/
  43. tracedb/
  44. webtools/
  45. .gitattributes
  46. .gitignore
  47. codereview.settings
  48. DEPS
  49. launch.md
  50. LICENSE
  51. Makefile
  52. PRESUBMIT.py
  53. README.md
  54. run_unittests
  55. run_unittests.go
  56. STYLEGUIDE.md
  57. whitespace.txt
  58. 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 \
  github.com/luci/luci-go/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.

Use this command to run the presubmit tests:

$ ./run_unittests --small