File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,22 @@ matrix:
14
14
env : LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=master
15
15
# Source package verification with Python 2.7 and librdkafka master
16
16
- os : osx
17
- language : python
18
17
python : " 2.7"
19
18
env : LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=master
19
+ before_install :
20
+ - brew update
21
+ - brew install python2
22
+ - virtualenv env -p python2
23
+ - source env/bin/activate
20
24
# Source package verification with Python 3.6 and librdkafka master
21
25
- os : osx
22
- language : python
23
26
python : " 3.6"
24
27
env : LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=master
28
+ before_install :
29
+ - brew update
30
+ - brew install python3
31
+ - virtualenv env -p python3
32
+ - source env/bin/activate
25
33
# cibuildwheel for osx
26
34
- os : osx
27
35
env : CIBW_BEFORE_BUILD="tools/bootstrap-librdkafka.sh --require-ssl master tmp" CFLAGS="-Itmp/include" LDFLAGS="-Ltmp/lib"
You can’t perform that action at this time.
0 commit comments