tree: 0bf1e2ff166c52a805f1478d2d1863ab478a9885 [path history] [tgz]
  1. internal/
  2. protos/
  3. templates/
  4. .gitignore
  5. builders.go
  6. builders_test.go
  7. buildstatus.go
  8. buildstatus_test.go
  9. coordinator.go
  10. coordinator_test.go
  11. dash.go
  12. debug.go
  13. deployment-prod.yaml
  14. deployment-staging.yaml
  15. Dockerfile
  16. Makefile
  17. metrics.go
  18. modproxy.go
  19. modproxy_test.go
  20. module-proxy-service.yaml
  21. queues.go
  22. queues_test.go
  23. README.md
  24. remote.go
  25. remote_test.go
  26. results.go
  27. results_test.go
  28. service-staging.yaml
  29. status.go
  30. status_test.go
  31. style.css
  32. trybot_dev.go
  33. version.sh
cmd/coordinator/README.md

Coordinator

Building, running tests, running locally is supported on Linux and macOS only.

Running locally in dev mode

go run . -mode=dev -listen-http=localhost:8080

Then visit http://localhost:8080/ in your browser.

Some features won't work when running in dev mode, but you should be able to navigate between the homepage, the build dashboard, the builders page, and do limited local development and testing.

To test builds locally, start a host-linux-amd64-localdev reverse buildlet, which will run linux-amd64 tests:

go run golang.org/x/build/cmd/buildlet -halt=false -reverse-type=host-linux-amd64-localdev

To view/modify the “Trybot Status” page locally, visit the /try-dev endpoint. You should see a trybot status page with some example data.

Deployment

See the documentation on deployment.