File: .travis.yml

package info (click to toggle)
golang-github-gocql-gocql 0.0~git20191102.0.9faa4c0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,012 kB
  • sloc: sh: 84; makefile: 2
file content (49 lines) | stat: -rw-r--r-- 662 bytes parent folder | download
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
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
    - CASS=2.2.14
      AUTH=true
    - CASS=2.2.14
      AUTH=false
    - CASS=3.0.18
      AUTH=false
    - CASS=3.11.4
      AUTH=false

go:
  - 1.12.x
  - 1.13.x

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
  - go vet .

notifications:
  - email: false