cayley/.travis.yml
Jimmy Zelinskie 64fa0f8032 store dependencies' versions with godep
These dependencies can be loaded into your $GOPATH simply executing
`godep restore`. This will allow builds to become reproducible, without
getting in the way of those wanting to consume parts of the project's
source code as a library.
2015-04-23 16:36:16 -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.18.zip
- unzip -q go_appengine_sdk_linux_amd64-1.9.18.zip
- export PATH=$PATH:$PWD/go_appengine/
- cd cayley
script:
- go test -v ./...
- goapp test -v ./graph/gaedatastore