mirror of
https://github.com/golang/go
synced 2024-11-07 01:46:15 -07:00
7bcc81e644
This change adds a new build dashboard url to the existing appengine app: $dashurl/gccgo/ which will show the build status of gccgo. * Added Dashboard struct with exported Name, Rel(ative)Path, and Packages fields. * Added Dashboard Context method that returns an appengine context with a namespace corresponding to the dashboard's name. * Modified HandlerFuncs to use Dashboard's Context method for all appengine requests. * Modified ui template to show different title/header for separate dashboard and added dashboard tab. R=adg CC=golang-dev https://golang.org/cl/13753043
20 lines
435 B
YAML
20 lines
435 B
YAML
# Update with
|
|
# google_appengine/appcfg.py [-V test-build] update .
|
|
#
|
|
# Using -V test-build will run as test-build.golang.org.
|
|
|
|
application: golang-org
|
|
version: build
|
|
runtime: go
|
|
api_version: go1
|
|
|
|
handlers:
|
|
- url: /static
|
|
static_dir: static
|
|
- url: /log/.+
|
|
script: _go_app
|
|
- url: /(|gccgo/)(|commit|packages|result|tag|todo)
|
|
script: _go_app
|
|
- url: /(|gccgo/)(init|buildtest|key|_ah/queue/go/delay)
|
|
script: _go_app
|
|
login: admin |