aboutsummaryrefslogtreecommitdiff
path: root/local_test.go
Commit message (Collapse)AuthorAge
* blog: skip test on slow aix-ppc64 builderBryan C. Mills2019-08-29
| | | | | | | | | | Updates golang/go#33940 Change-Id: Ie6592612e77c91eaa8742046b8b54199ed934909 Reviewed-on: https://go-review.googlesource.com/c/blog/+/192323 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
* blog: update to use new Go branding guidelinesAndrew Bonventre2019-08-12
| | | | | | | | | | Additionally makes some small changes to abide by best practices. Updates golang/go#9936 Change-Id: I88263ef78548365b3cfb3f14bae48deb01d30f4f Reviewed-on: https://go-review.googlesource.com/c/blog/+/189457 Reviewed-by: Katie Hockman <katie@golang.org>
* blog: fix test on android, add copyright headerBrad Fitzpatrick2019-02-28
| | | | | | Change-Id: I193531fe0e8f177d3b55fc1ef0840299f973c482 Reviewed-on: https://go-review.googlesource.com/c/164678 Reviewed-by: Elias Naur <mail@eliasnaur.com>
* blog: clean up blog to allow usage with gcloud commandAndrew Bonventre2018-05-24
+ The app.yaml file needs to be in the same directory as the entry-point Go files, so those are moved from ./blog to ./ + Go files within the context article did not have the +build OMIT directive, so gcloud would view them as files that needed to be built at deploy time. Add the +build OMIT directive and use the context package instead of x/net/context. + Switch to using a service instead of version and update app.yaml to account for this. + Use 1.9 as the runtime. + Remove superfluous .gitignore Change-Id: I7c886849b912bc7f5b67cd2791cb6986d93d5cc7 Reviewed-on: https://go-review.googlesource.com/114455 Reviewed-by: Russ Cox <rsc@golang.org>