Skip to content

Commit b55b0a8

Browse files
committed
[ci] further debug manylinux build
1 parent a5a9c7a commit b55b0a8

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/manylinux2014_wheel_builder/build_wheels.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ for PYBIN in /opt/python/cp3{7,8,9,10,11,12,13,14}*/bin/; do
2121
"${PYBIN}/pip" install build setuptools wheel
2222

2323
# Build wheel
24-
"${PYBIN}/python" -m build --wheel --outdir wheels/
24+
"${PYBIN}/python" -m build --wheel --outdir tmpwheels/
2525

2626
# Run unit tests
27-
"${PYBIN}/pip" install wheels/zmat-*.whl
27+
"${PYBIN}/pip" install tmpwheels/zmat-*.whl
2828
"${PYBIN}/python" -m unittest discover -s tests -v
2929
"${PYBIN}/pip" uninstall -y zmat
3030
fi
@@ -34,7 +34,7 @@ done
3434
rm -rf dist/
3535
mkdir -p dist/
3636

37-
for WHEEL in wheels/*.whl; do
37+
for WHEEL in tmpwheels/*.whl; do
3838
if [ -f "$WHEEL" ]; then
3939
echo "Checking: ${WHEEL}"
4040

@@ -51,7 +51,7 @@ for WHEEL in wheels/*.whl; do
5151
done
5252

5353
# Cleanup
54-
rm -rf wheels/ build/ *.egg-info/ builddir/
54+
rm -rf tmpwheels/ build/ *.egg-info/ builddir/
5555

5656
echo "========================================"
5757
echo "Built wheels:"

python/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,6 @@ Repository = "https://github.com/NeuroJSON/zmat"
4141
Issues = "https://github.com/NeuroJSON/zmat/issues"
4242

4343
[tool.setuptools]
44-
zip-safe = false
44+
zip-safe = false
45+
py-modules = []
46+
packages = []

0 commit comments

Comments
 (0)