https://github.com/google/cayley
Revision f312d212e412ff252f75c260a4b5e6540b8f7668 authored by Denys Smirnov on 20 October 2018, 19:09:59 UTC, committed by Denys Smirnov on 20 October 2018, 19:20:26 UTC
1 parent 330365b
Raw File
Tip revision: f312d212e412ff252f75c260a4b5e6540b8f7668 authored by Denys Smirnov on 20 October 2018, 19:09:59 UTC
schema: support loading objects with loops
Tip revision: f312d21
.travis.yml
language: go

sudo: false

go:
  - "1.10"
  - "1.11"
  - tip

install:
  # Install our tracked dependencies
  - 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/
  - dep ensure --vendor-only
  - go get -t ./...

  # 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 ./...
  #  - goapp test -v ./graph/gaedatastore

matrix:
  allow_failures:
    - go: tip
back to top