mirror of
https://github.com/golang/oauth2.git
synced 2025-07-21 00:00:09 +08:00
"appengine appenginevm" requires the Classic dependencies to be go-getted. Our travis build doesn't have the right setup to checkout the Classic App Engine package to the Travis instance. Change-Id: I13daa505be4c8ac209021c7e69a114f5eddd6d1e Reviewed-on: https://go-review.googlesource.com/2982 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
15 lines
270 B
YAML
15 lines
270 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.3
|
|
- 1.4
|
|
|
|
install:
|
|
- export GOPATH="$HOME/gopath"
|
|
- mkdir -p "$GOPATH/src/golang.org/x"
|
|
- mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2"
|
|
- go get -v -t -d golang.org/x/oauth2/...
|
|
|
|
script:
|
|
- go test -v golang.org/x/oauth2/...
|