Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
anchitj committed Feb 3, 2023
1 parent f4afd06 commit 9ad1775
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ blocks:
- python setup.py build && python setup.py install
- make docs
- name: "Wheels: Linux arm64"
# run:
# when: "tag =~ '.*'"
dependencies: []
task:
agent:
Expand Down
2 changes: 1 addition & 1 deletion tools/bootstrap-librdkafka.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mkdir -p "$BUILDDIR/librdkafka"
pushd "$BUILDDIR/librdkafka"

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

./configure --clean
Expand Down
2 changes: 1 addition & 1 deletion tools/build-manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [[ ! -f /.dockerenv ]]; then
docker_image=quay.io/pypa/manylinux_2_28_x86_64:latest
fi

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

exit $?
fi
Expand Down

0 comments on commit 9ad1775

Please sign in to comment.