Skip to content

Commit a3221dd

Browse files
committed
cmd/tip: remove ability to serve talks.golang.org
The tip server is primarily about serving tip.golang.org, and it does today. There was also a time it was used to serve talks.golang.org with an auto-deploy feature, but that ability has degraded over time and is currently unused. After some investigation of our options, we made a decision in issue golang.org/issue/36825 to remove this broken and unused functionality in favor of x/talks' own simpler App Engine deployment. If needed, this can all be brought back and restored as part of future work, but it's better to delete code and a misleading README until then. Fixes golang/go#36825. Updates golang/go#38120. Change-Id: I5fbca48dea13e871cd04e23b36c8d3acd2f8fef5 Reviewed-on: https://go-review.googlesource.com/c/build/+/290529 Trust: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]>
1 parent 96687b6 commit a3221dd

File tree

5 files changed

+25
-119
lines changed

5 files changed

+25
-119
lines changed

cmd/tip/README

Lines changed: 0 additions & 28 deletions
This file was deleted.

cmd/tip/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!-- Auto-generated by x/build/update-readmes.go -->
2+
3+
[![Go Reference](https://pkg.go.dev/badge/golang.org/x/build/cmd/tip.svg)](https://pkg.go.dev/golang.org/x/build/cmd/tip)
4+
5+
# golang.org/x/build/cmd/tip
6+
7+
Command tip is the tip.golang.org server, serving the latest HEAD straight from the Git oven.
8+
9+
## Deployment
10+
11+
### Staging
12+
13+
To deploy to the staging project https://tip-staging.golang.org:
14+
15+
```sh
16+
$ make deploy-staging
17+
```
18+
19+
### Production
20+
21+
To deploy to https://tip.golang.org:
22+
23+
```sh
24+
$ make deploy-prod
25+
```

cmd/tip/talks.go

Lines changed: 0 additions & 77 deletions
This file was deleted.

cmd/tip/talks.yaml

Lines changed: 0 additions & 12 deletions
This file was deleted.

cmd/tip/tip.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ func main() {
4646
switch os.Getenv(k) {
4747
case "golangorg":
4848
b = golangorgBuilder{}
49-
case "talks":
50-
b = talksBuilder{}
5149
default:
5250
log.Fatalf("Unknown %v value: %q", k, os.Getenv(k))
5351
}

0 commit comments

Comments
 (0)