File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ blocks:
126
126
commands :
127
127
- sem-version python 3.8
128
128
- python -m pip install --upgrade pip
129
- - PIP_INSTALL_OPTIONS="--user" tools/wheels/build-wheels.sh "${LIBRDKAFKA_VERSION#v}" wheelhouse
129
+ - ls -lrt
130
+ - docker run -e OS_NAME='linux' -e ARCH='arm64' -e CIBW_ARCHS='aarch64' -w /io/ -v `pwd`:/io quay.io/pypa/manylinux2014_aarch64 tools/wheels/build-wheels.sh "${LIBRDKAFKA_VERSION#v}" wheelhouse
130
131
- tar -czf wheelhouse-linux-${ARCH}.tgz wheelhouse
131
132
- artifact push workflow wheelhouse-linux-${ARCH}.tgz
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ set -ex
26
26
27
27
[[ -d $wheeldir ]] || mkdir -p " $wheeldir "
28
28
29
+ yum install -y python3
30
+
29
31
ARCH=${ARCH:- x64}
30
32
31
33
case $OSTYPE in
@@ -49,10 +51,9 @@ case $OSTYPE in
49
51
;;
50
52
esac
51
53
52
-
53
54
$this_dir /install-librdkafka.sh $librdkafka_version dest
54
55
55
- install_pkgs=cibuildwheel==2.11.2
56
+ install_pkgs=cibuildwheel==2.8.1
56
57
57
58
python3 -m pip install ${PIP_INSTALL_OPTS} $install_pkgs ||
58
59
pip3 install ${PIP_INSTALL_OPTS} $install_pkgs
@@ -69,4 +70,3 @@ for f in $wheeldir/*whl ; do
69
70
echo $f
70
71
unzip -l $f
71
72
done
72
-
You can’t perform that action at this time.
0 commit comments