We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5871956 commit 50eb1d8Copy full SHA for 50eb1d8
tools/source-package-verification.sh
@@ -5,19 +5,16 @@
5
#
6
set -e
7
8
-pip install poetry
9
-poetry install --all-extras --no-root
10
-pip install tests/trivup/trivup-0.12.7.tar.gz
11
-pip install -U build
12
-
13
lib_dir=dest/runtimes/$OS_NAME-$ARCH/native
14
tools/wheels/install-librdkafka.sh "${LIBRDKAFKA_VERSION#v}" dest
15
export CFLAGS="$CFLAGS -I${PWD}/dest/build/native/include"
16
export LDFLAGS="$LDFLAGS -L${PWD}/${lib_dir}"
17
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD/$lib_dir"
18
export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$PWD/$lib_dir"
19
20
-python3 -m pip install .
+pip install -U build poetry
+poetry install --all-extras
+pip install tests/trivup/trivup-0.12.7.tar.gz
21
22
if [[ $OS_NAME == linux && $ARCH == x64 ]]; then
23
if [[ -z $TEST_CONSUMER_GROUP_PROTOCOL ]]; then
0 commit comments