We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 668abb1 commit 380529fCopy full SHA for 380529f
.travis.yml
@@ -0,0 +1,3 @@
1
+language: c
2
+
3
+script: ./travis.sh
travis.sh
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+echo "....fetching librdkafka dependency...."
+mkdir tmp_build
4
+cd tmp_build
5
+## clone fork, we know this version of librdkafka works
6
+git clone https://github.com/EVODelavega/librdkafka.git
7
+echo ".....done....."
8
+cd librdkafka
9
+echo "....compiling librdkafka...."
10
+./configure && make && sudo install
11
+echo "....done, now cleaning up...."
12
+cd ../../
13
+rm -Rf tmp_build
14
+echo ".... start building extension....."
15
+phpize
16
+./configure --enable-kafka
17
+make
18
+NO_INTERACTION=1 make test
0 commit comments