https://github.com/google/cayley
Revision 16f67d50e61b0de4321482804a85986d8598bf80 authored by josephschorr on 16 July 2016, 10:37:36 UTC, committed by Denys Smirnov on 16 July 2016, 10:37:36 UTC
1 parent d390663
Raw File
Tip revision: 16f67d50e61b0de4321482804a85986d8598bf80 authored by josephschorr on 16 July 2016, 10:37:36 UTC
Add Clone() to Path for easier reuse of Path segments (#444)
Tip revision: 16f67d5
.travis.yml
language: go

sudo: false

go:
  - 1.5
  - 1.6
  - tip

install:
  # Install our tracked dependencies
  - go get github.com/tools/godep
  - godep restore

  # Google App Engine dependencies
  - cd ..
  - wget https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.23.zip
  - unzip -q go_appengine_sdk_linux_amd64-1.9.23.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