https://github.com/google/cayley
Revision 924a8c2fd94b6aa9ae353a954332c69ead8be660 authored by Denys Smirnov on 03 June 2018, 12:27:19 UTC, committed by Denys Smirnov on 03 June 2018, 12:27:33 UTC
1 parent 1366fb9
Raw File
Tip revision: 924a8c2fd94b6aa9ae353a954332c69ead8be660 authored by Denys Smirnov on 03 June 2018, 12:27:19 UTC
gizmo: All should honor a query limit; fixes #718
Tip revision: 924a8c2
.travis.yml
language: go

sudo: false

go:
  - 1.9
  - "1.10"
  - tip

install:
  # Install our tracked dependencies
  - go get -t ./...
  - mkdir ../dep && curl -L https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -o ../dep/dep && chmod +x ../dep/dep && export PATH=$PATH:$PWD/../dep/
  - dep ensure --vendor-only

  # 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