Skip to content

Commit 9ad1775

Browse files
committed
Address comments
1 parent f4afd06 commit 9ad1775

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.semaphore/semaphore.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ blocks:
8181
- python setup.py build && python setup.py install
8282
- make docs
8383
- name: "Wheels: Linux arm64"
84+
# run:
85+
# when: "tag =~ '.*'"
8486
dependencies: []
8587
task:
8688
agent:

tools/bootstrap-librdkafka.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mkdir -p "$BUILDDIR/librdkafka"
2929
pushd "$BUILDDIR/librdkafka"
3030

3131
test -f configure ||
32-
curl -q -L "https://github.com/confluentinc/librdkafka/archive/refs/tags/v${VERSION}.tar.gz" | \
32+
curl -q -L "https://github.com/confluentinc/librdkafka/archive/refs/tags/${VERSION}.tar.gz" | \
3333
tar -xz --strip-components=1 -f -
3434

3535
./configure --clean

tools/build-manylinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if [[ ! -f /.dockerenv ]]; then
3939
docker_image=quay.io/pypa/manylinux_2_28_x86_64:latest
4040
fi
4141

42-
docker run -t -v $(pwd):/io $docker_image /io/tools/build-manylinux.sh "$LIBRDKAFKA_VERSION"
42+
docker run -t -v $(pwd):/io $docker_image /io/tools/build-manylinux.sh "v${LIBRDKAFKA_VERSION}"
4343

4444
exit $?
4545
fi

0 commit comments

Comments
 (0)