https://github.com/google/cayley
Revision bf28b803551e42ce1432acb6d87027d57259ea79 authored by Robert Melton on 21 July 2016, 16:37:01 UTC, committed by Robert Melton on 21 July 2016, 16:37:01 UTC
1 parent c39b2db
Raw File
Tip revision: bf28b803551e42ce1432acb6d87027d57259ea79 authored by Robert Melton on 21 July 2016, 16:37:01 UTC
Just better quickstart + examples creation
Tip revision: bf28b80
.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