Skip to content

Commit d097896

Browse files
committed
wip
1 parent 02bdf66 commit d097896

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-arm64-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
sh rustup-init.sh -y && \
4646
yum -y install openssl-devel && \
4747
yum -y install gmp && \
48-
ls -la /usr/lib64/ && \
48+
pkg-config --libs gmp && \
4949
source $HOME/.cargo/env && \
5050
rustup target add aarch64-unknown-linux-musl && \
5151
rm -rf venv && \
@@ -56,7 +56,7 @@ jobs:
5656
if [ ! -f "activate" ]; then ln -s venv/bin/activate; fi && \
5757
. ./activate && \
5858
pip install maturin && \
59-
CC=gcc maturin build --no-sdist --release --strip --manylinux 2014 --cargo-extra-args="--features=openssl,libgmp" \
59+
CC=gcc maturin build --no-sdist --release --strip --manylinux 2014 --cargo-extra-args="--features=openssl,libgmp10" \
6060
'
6161
6262
- name: Upload artifacts

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
sh rustup-init.sh -y && \
7373
yum -y install openssl-devel && \
7474
yum -y install gmp && \
75-
pkg-config --libs libgmp && \
75+
pkg-config --libs gmp && \
7676
source $HOME/.cargo/env && \
7777
rustup target add x86_64-unknown-linux-musl && \
7878
rm -rf venv && \

0 commit comments

Comments
 (0)