https://github.com/google/cayley
Revision f733b02405d3173eea5c901f28c6f8153ac1ed3f authored by Robert Melton on 23 July 2016, 11:47:28 UTC, committed by GitHub on 23 July 2016, 11:47:28 UTC
2 parent s d582adb + 54d4921
Raw File
Tip revision: f733b02405d3173eea5c901f28c6f8153ac1ed3f authored by Robert Melton on 23 July 2016, 11:47:28 UTC
Merge pull request #453 from oren/master
Tip revision: f733b02
.travis.yml
language: go

sudo: false

go:
  - 1.5
  - 1.6
  - tip

install:
  # Install our tracked dependencies
  - go get -t ./...
  - 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/
  - $PWD/go_appengine/goapp get github.com/stretchr/testify/require
  - cd cayley

script:
  - go test -v ./...
  - goapp test -v ./graph/gaedatastore

matrix:
  allow_failures:
    - go: tip
back to top