https://github.com/google/cayley
Revision c93c04625d83bf067eba35d8932ed042c6e5fda9 authored by Evgeniy Skidan on 18 April 2018, 23:07:34 UTC, committed by Denys Smirnov on 23 April 2018, 10:40:10 UTC
1 parent ebe0dbd
Raw File
Tip revision: c93c04625d83bf067eba35d8932ed042c6e5fda9 authored by Evgeniy Skidan on 18 April 2018, 23:07:34 UTC
Fix dep downloading with "follow redirects" option
Tip revision: c93c046
.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