cayley/.travis.yml
Jimmy Zelinskie 140067a56f travis.yml: bump appengine dependency
This is currently breaking CI. We should ultimately find a better place
to download this binary, because Google doesn't seem to host old
versions for very long.
2015-07-13 15:27:00 -04:00

25 lines
482 B
YAML

language: go
sudo: false
go:
- 1.3
- 1.4
- tip
install:
# Install our tracked dependencies
- go get github.com/tools/godep
- godep restore
# Google App Engine dependencies
- cd ..
- wget https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.23.zip
- unzip -q go_appengine_sdk_linux_amd64-1.9.23.zip
- export PATH=$PATH:$PWD/go_appengine/
- cd cayley
script:
- go test -v ./...
- goapp test -v ./graph/gaedatastore