blob: 4331fa140e31166302c794f33db9e964a27d2394 [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +00001dist: xenial
2language: go
3go:
4- 1.11.x
5- 1.12.x
6
7env:
8 global:
9 - KAFKA_PEERS=localhost:9091,localhost:9092,localhost:9093,localhost:9094,localhost:9095
10 - TOXIPROXY_ADDR=http://localhost:8474
11 - KAFKA_INSTALL_ROOT=/home/travis/kafka
12 - KAFKA_HOSTNAME=localhost
13 - DEBUG=true
14 matrix:
15 - KAFKA_VERSION=2.1.1 KAFKA_SCALA_VERSION=2.12
16 - KAFKA_VERSION=2.2.1 KAFKA_SCALA_VERSION=2.12
17 - KAFKA_VERSION=2.3.0 KAFKA_SCALA_VERSION=2.12
18
19before_install:
20- export REPOSITORY_ROOT=${TRAVIS_BUILD_DIR}
21- vagrant/install_cluster.sh
22- vagrant/boot_cluster.sh
23- vagrant/create_topics.sh
24- vagrant/run_java_producer.sh
25
26install: make install_dependencies
27
28script:
29- make test
30- make vet
31- make errcheck
32- if [[ "$TRAVIS_GO_VERSION" == 1.12* ]]; then make fmt; fi
33
34after_success:
35- bash <(curl -s https://codecov.io/bash)
36
37after_script: vagrant/halt_cluster.sh