forked from conduktor/kafka-stack-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (25 loc) · 781 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
# this file is only used for GitHub
# it is not related to your Kafka Streams learning
sudo: required
env:
- DOCKER_HOST_IP=127.0.0.1
# - DOCKER_HOST_IP=192.168.99.100
services:
- docker
addons:
# install the kafka binaries
apt:
sources:
- sourceline: 'deb [arch=amd64] https://packages.confluent.io/deb/4.1 stable main'
key_url: 'https://packages.confluent.io/deb/4.1/archive.key'
packages:
- confluent-platform-oss-2.11
# - kafkacat
script:
# test the java components
- ./test.sh zk-single-kafka-single.yml 2
- ./test.sh zk-multiple-kafka-single.yml 4
- ./test.sh zk-single-kafka-multiple.yml 4
- ./test.sh zk-multiple-kafka-multiple.yml 6
- ./test.sh zk-multiple-kafka-multiple-schema-registry.yml 7
- ./test.sh full-stack.yml 10