Skip to content

Commit 2ae18b8

Browse files
committed
fixup
1 parent e51f4bf commit 2ae18b8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/benchmark.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ jobs:
6363
. .\venv\Scripts\Activate.ps1
6464
python benchmark/run-benchmark.py
6565
66+
- name: Install GMP
67+
if: ${{ startsWith(matrix.os, 'ubuntu') }}
68+
run: yum install gmp
69+
6670
- name: Build
6771
if: ${{ !startsWith(matrix.os, 'windows') }}
6872
env:
@@ -109,6 +113,7 @@ jobs:
109113
run: |
110114
python -m pip install maturin
111115
rustup target add x86_64-unknown-linux-musl
116+
yum install gmp
112117
113118
- name: Build
114119
env:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
curl -L https://sh.rustup.rs > rustup-init.sh && \
4343
sh rustup-init.sh -y && \
4444
yum -y install openssl-devel && \
45+
yum -y install gmp && \
4546
source $HOME/.cargo/env && \
4647
rustup target add aarch64-unknown-linux-musl && \
4748
rm -rf venv && \

0 commit comments

Comments
 (0)