Skip to content

Commit 52b55d1

Browse files
committed
some changes
1 parent bca868a commit 52b55d1

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.semaphore/semaphore.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,17 @@ blocks:
118118
- name: CIBW_MANYLINUX_*_IMAGE
119119
value: manylinux_2_28
120120
- name: CIBW_REPAIR_WHEEL_COMMAND
121-
value: auditwheel repair -w {dest_dir} {wheel} --plat manylinux2014_aarch64
121+
value: auditwheel repair -w {dest_dir} {wheel} --plat manylinux_2_28_aarch64
122122
- name: CIBW_PROJECT_REQUIRES_PYTHON
123123
value: ">=3.8"
124+
- name: CIBW_BUILD_VERBOSITY
125+
value: "3"
124126
jobs:
125127
- name: Build
126128
commands:
127129
- sem-version python 3.8
128130
- python -m pip install --upgrade pip
129131
- 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
132+
- PIP_INSTALL_OPTIONS="--user" tools/wheels/build-wheels.sh "${LIBRDKAFKA_VERSION#v}" wheelhouse
131133
- tar -czf wheelhouse-linux-${ARCH}.tgz wheelhouse
132134
- artifact push workflow wheelhouse-linux-${ARCH}.tgz

tools/wheels/build-wheels.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ this_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
1010
# Skip PyPy, Python2, old Python3 versions, musl, and x86 builds.
1111
export CIBW_SKIP="pp* cp27-* cp35-* *i686 *musllinux* $CIBW_SKIP"
1212
# Run a simple test suite
13-
export CIBW_TEST_REQUIRES="-r tests/requirements.txt"
14-
export CIBW_TEST_COMMAND="pytest {project}/tests/test_Producer.py"
13+
#export CIBW_TEST_REQUIRES="-r tests/requirements.txt"
14+
#export CIBW_TEST_COMMAND="pytest {project}/tests/test_Producer.py"
1515

1616

1717
librdkafka_version=$1
@@ -26,7 +26,7 @@ set -ex
2626

2727
[[ -d $wheeldir ]] || mkdir -p "$wheeldir"
2828

29-
yum install -y python3
29+
# yum install -y python3
3030

3131
ARCH=${ARCH:-x64}
3232

0 commit comments

Comments
 (0)