.travis.yml 477 B

123456789101112131415161718192021
  1. env:
  2. - PROTOBUF_VERSION=2.5.0
  3. - PROTOBUF_VERSION=2.6.1
  4. - PROTOBUF_VERSION=3.0.0
  5. before_install:
  6. - ./install-protobuf.sh
  7. - PATH=/home/travis/bin:$PATH protoc --version
  8. script:
  9. - PATH=/home/travis/bin:$PATH make buildserverall
  10. - echo $TRAVIS_GO_VERSION
  11. - if [ "$TRAVIS_GO_VERSION" == 1.7 ] && [[ "$PROTOBUF_VERSION" == 3.0.0 ]]; then ! git status --porcelain | read || (git status; git diff; exit 1); fi
  12. language: go
  13. go:
  14. - 1.4.2
  15. - 1.5.4
  16. - 1.6.3
  17. - 1.7