Skip to content

Commit 0924efa

Browse files
committed
Now try armv6
1 parent f15f93c commit 0924efa

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.github/workflows/build-binaries.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ jobs:
4646
# maturin_docker_options: -e JEMALLOC_SYS_WITH_LG_PAGE=16
4747
# - target: armv7-unknown-linux-gnueabihf
4848
# arch: armv7
49-
- target: armv7-unknown-linux-musleabihf
50-
arch: armv7
51-
# - target: arm-unknown-linux-musleabihf
49+
# - target: armv7-unknown-linux-musleabihf
5250
# arch: armv7
51+
- target: arm-unknown-linux-musleabihf
52+
arch: arm
53+
# maturin_docker_options: -e CC=gcc-arm-linux-gnu
5354

5455
steps:
5556
- uses: actions/checkout@v4
@@ -62,16 +63,13 @@ jobs:
6263
uses: PyO3/maturin-action@v1
6364
with:
6465
target: ${{ matrix.platform.target }}
65-
manylinux: auto
66+
manylinux: 2_24
6667
docker-options: ${{ matrix.platform.maturin_docker_options }}
6768
args: --release --locked --out dist --no-default-features --features flate2/rust_backend
6869
before-script-linux: |
69-
if command -v yum &> /dev/null; then
70-
yum update -y
71-
yum -y install epel-release
72-
yum repolist
73-
yum install -y gcc-arm-linux-gnu
74-
fi
70+
echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list
71+
apt-get update
72+
apt-get install -y --no-install-recommends arm-linux-musleabihf-gcc
7573
- uses: uraimo/run-on-arch-action@v2
7674
if: matrix.platform.arch != 'ppc64'
7775
name: Test wheel

0 commit comments

Comments
 (0)