summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBurcu Dogan <jbd@google.com>2014-11-10 15:40:49 +1100
committerBurcu Dogan <jbd@google.com>2014-11-10 16:03:50 +1100
commit13cbb8b617efd72d838b293329c292cfd53ef76c (patch)
tree6d9395820efd00aad986c1cd5369ab5287ddfa5f /.travis.yml
parent0cf6f9b144f92af7a901094e39b22c310f4ea2cd (diff)
downloadgolang-x-oauth2-13cbb8b617efd72d838b293329c292cfd53ef76c.tar.gz
Disable builds for classic App Engine.
Current build file doesn't build the subdirectories, therefore succeeds without building the actual packages. We need to add the appengine and appengine_internal manually to the GOPATH and enable the appengine build again.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 3d835cb..9ab73b2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,7 @@ language: go
go: 1.3
install:
- go get -v -tags='appengine appenginevm' ./... && hg clone https://code.google.com/p/appengine-go/ $GOPATH/appengine
+ - go get -v -tags='appengine appenginevm' ./...
script:
- go test -v -tags='appengine appenginevm' ./... && go build -v -tags='appengine'
+ - go test -v -tags='appengine appenginevm' ./...