-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
32 lines (29 loc) · 974 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
language: node_js
node_js:
- "12"
env:
global:
- ZOOKEEPER_PEERS=localhost:2181
- KAFKA_PEERS=localhost:9092
- KST_TOPIC=sc_test_topic
- CXX=g++-4.8
before_install:
- wget http://archive.apache.org/dist/kafka/1.1.0/kafka_2.12-1.1.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
- nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &"
- nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &"
- sleep 5
- kafka/bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic sc_test_topic --zookeeper localhost:2181
- kafka/bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic sc_test_topic_2 --zookeeper localhost:2181
- sleep 2
script:
- rm -rf node_modules
- yarn
- yarn add --frozen-lockfile node-rdkafka@2.7.4
- yarn test-ci
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8