https://github.com/google/cayley
Raw File
Tip revision: dc30d08f02e4b56bcfdff7fe6b6c25d3cb969b53 authored by Brendan Ball on 10 December 2018, 19:20:48 UTC
Add author and contributor
Tip revision: dc30d08
.travis.yml
language: go

sudo: false

go:
  - "1.10.x"
  - "1.11.x"
  - tip

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

  # 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