Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,15 @@ jobs:
CIBW_ENABLE: 'pypy'
CIBW_BUILD: '${{ matrix.python-version }}-*'
# wasmtime doesn't support i686
CIBW_SKIP: '*_i686 *-musllinux* *-win32'
CIBW_SKIP: '*_i686 *-win32'
# we build for "arch" if it exists, else 'auto'
CIBW_ARCHS: ${{ matrix.arch || 'auto' }}

CIBW_BEFORE_BUILD_LINUX: >
CIBW_BEFORE_BUILD_LINUX: |
if [[ $CIBW_BUILD == *-musllinux* ]]; then
export CARGO_TARGET_X86_64_UNKNOWN_LINUX_MUSL_LINKER="gcc"
export CARGO_ENCODED_RUSTFLAGS=""
fi
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=stable --profile=minimal -y &&
rustup show

Expand Down