.travis.yml 413 B

1234567891011121314151617181920212223242526
  1. language: go
  2. env:
  3. - CASS=1.2.18
  4. - CASS=2.0.9
  5. go:
  6. - 1.2
  7. - 1.3
  8. - tip
  9. before_script:
  10. - sudo apt-get install -y libjna-java python-pip
  11. - sudo pip install cql PyYAML six
  12. - go get code.google.com/p/go.tools/cmd/vet
  13. - git clone https://github.com/pcmanus/ccm.git
  14. - pushd ccm
  15. - sudo ./setup.py install
  16. - popd
  17. script:
  18. - bash integration.sh $CASS
  19. - go vet .
  20. notifications:
  21. - email: false