mirror of
https://github.com/golang/oauth2.git
synced 2025-07-21 00:00:09 +08:00
Travis build is still depending on the old build tag configuration which is now invalid. Change-Id: I9db75f5d65d5cd9b8f2350815f190ea93ed6d6d9 Reviewed-on: https://go-review.googlesource.com/2956 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
15 lines
300 B
YAML
15 lines
300 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 -tags='appengine appenginevm' golang.org/x/oauth2/...
|
|
|
|
script:
|
|
- go test -v golang.org/x/oauth2/...
|