forked from apache/cassandra-gocql-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
56 lines (46 loc) · 834 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
language: go
sudo: required
dist: trusty
cache:
directories:
- $HOME/.ccm/repository
- $HOME/.local/lib/python2.7
matrix:
fast_finish: true
branches:
only:
- master
env:
global:
- GOMAXPROCS=2
matrix:
- CASS=2.1.21
AUTH=true
COMPRESSOR=snappy
- CASS=2.2.14
AUTH=true
COMPRESSOR=snappy
- CASS=2.2.14
AUTH=false
COMPRESSOR=snappy
- CASS=3.0.18
AUTH=false
COMPRESSOR=snappy
- CASS=3.11.4
AUTH=false
COMPRESSOR=snappy
go:
- 1.15.x
- 1.16.x
go_import_path: github.com/gocql/gocql
install:
- ./install_test_deps.sh $TRAVIS_REPO_SLUG
- cd ../..
- cd gocql/gocql
- go get .
script:
- set -e
- PATH=$PATH:$HOME/.local/bin bash integration.sh $CASS $AUTH $COMPRESSOR
- go vet .
notifications:
- email: false