| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- language: go
- sudo: false
- cache:
- directories:
- - $HOME/.ccm/repository
- - $HOME/.local/lib/python2.7
- matrix:
- fast_finish: true
- env:
- global:
- - GOMAXPROCS=2
- matrix:
- - CASS=2.0.17
- AUTH=false
- - CASS=2.1.11
- AUTH=false
- - CASS=2.1.11
- AUTH=true
- - CASS=2.2.3
- AUTH=false
- go:
- - 1.4
- - 1.5.3
- install:
- - pip install --user cql PyYAML six
- - go get golang.org/x/tools/cmd/vet
- - go get golang.org/x/tools/cmd/cover
- - git clone https://github.com/pcmanus/ccm.git
- - pushd ccm
- - ./setup.py install --user
- - popd
- - go get .
- script:
- - set -e
- - go test -v -tags unit
- - PATH=$PATH:$HOME/.local/bin bash integration.sh $CASS $AUTH
- - go vet .
- notifications:
- - email: false
|