1language: go
2
3sudo: false
4
5go:
6  - "1.10.x"
7  - "1.11.x"
8  - tip
9
10install:
11  # Install our tracked dependencies
12  - mkdir ../dep && curl -L https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o ../dep/dep && chmod +x ../dep/dep && export PATH=$PATH:$PWD/../dep/
13  - dep ensure --vendor-only
14  - go get -t ./...
15
16  # Google App Engine dependencies
17  #  - cd ..
18  #  - wget https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.40.zip
19  #  - unzip -q go_appengine_sdk_linux_amd64-1.9.40.zip
20  #  - export PATH=$PATH:$PWD/go_appengine/
21  #  - cd cayley
22
23script:
24  - go test -v ./...
25  #  - goapp test -v ./graph/gaedatastore
26
27matrix:
28  allow_failures:
29    - go: tip
30