https://github.com/google/cayley
Revision 3686466a2a38f9d275b4fd530e52bddf211591de authored by Denys Smirnov on 23 October 2016, 01:31:39 UTC, committed by Denys Smirnov on 23 October 2016, 01:31:39 UTC
1 parent 01c19e8
Raw File
Tip revision: 3686466a2a38f9d275b4fd530e52bddf211591de authored by Denys Smirnov on 23 October 2016, 01:31:39 UTC
add count iterator to list of types
Tip revision: 3686466
.travis.yml
language: go

sudo: false

go:
  - 1.6
  - 1.7
  - tip

install:
  # Install our tracked dependencies
  - go get -t ./...
  - curl -L https://github.com/Masterminds/glide/releases/download/v0.11.1/glide-v0.11.1-linux-amd64.tar.gz -o /tmp/glide.tar.gz
  - mkdir ../glide && cd ../glide && tar -xzf /tmp/glide.tar.gz && export PATH=$PATH:$PWD/linux-amd64/ && cd ../cayley
  - glide install

  # Google App Engine dependencies
  - cd ..
  - wget https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.40.zip
  - unzip -q go_appengine_sdk_linux_amd64-1.9.40.zip
  - export PATH=$PATH:$PWD/go_appengine/
  - cd cayley

script:
  - go test -v $(go list ./... | grep -v vendor/)
  - goapp test -v ./graph/gaedatastore

matrix:
  allow_failures:
    - go: tip
back to top