Skip to content

Commit

Permalink
Fix musllinux build; disable PyPy3.9 because it cannot build zope.int…
Browse files Browse the repository at this point in the history
…erface 6
  • Loading branch information
jamadden committed Jun 27, 2023
1 parent 0e8072d commit 632f4c2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [pypy-3.9, 3.7, 3.8, 3.9, '3.10', '3.11']
# XXX: PyPy 3.9 is failing to build zope.interface 6.0!
# Need to take this up with the zope.interface repo.
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
os: [ubuntu-latest, macos-latest]
exclude:
- os: macos-latest
Expand Down
9 changes: 8 additions & 1 deletion scripts/releases/make-manylinux
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,14 @@ if [ -d /RelStorage -a -d /opt/python ]; then
mkdir -p /cache/pip
ls -ld /cache/pip

yum -y install ccache
if [ -e /usr/bin/yum ]; then
# manylinux
yum -y install ccache
fi
if [ -e /sbin/apk ]; then
# musllinux
apk add ccache
fi

cd /RelStorage
rm -rf wheelhouse
Expand Down

0 comments on commit 632f4c2

Please sign in to comment.