Skip to content

Commit 9f7c043

Browse files
committed
wip
1 parent b22bfb1 commit 9f7c043

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Diff for: .github/workflows/benchmark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
python -m pip install ./clvm_tools
5656
python -m pip install colorama
5757
git clone https://github.com/Chia-Network/mpir_gc_x64.git --depth 1
58-
maturin develop --release
58+
maturin develop --release --carg-extra-args="--features=mpir"
5959
6060
- name: Run benchmarks (Windows)
6161
if: startsWith(matrix.os, 'windows')

Diff for: .github/workflows/build-arm64-wheels.yml

+2-2
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+
ls -la /opt/rh/devtoolset-10/root/usr/lib64/ && \
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,libgmp10" \
59+
CC=gcc maturin build --no-sdist --release --strip --manylinux 2014 --cargo-extra-args="--features=openssl,libgmp3" \
6060
'
6161
6262
- name: Upload artifacts

Diff for: .github/workflows/build-test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ jobs:
7272
sh rustup-init.sh -y && \
7373
yum -y install openssl-devel && \
7474
yum -y install gmp && \
75-
ls -la /usr/lib64 && \
75+
ls -la /opt/rh/devtoolset-8/root/usr/lib64 && \
76+
ls -la /opt/rh/devtoolset-8/root/usr/lib && \
7677
source $HOME/.cargo/env && \
7778
rustup target add x86_64-unknown-linux-musl && \
7879
rm -rf venv && \
@@ -89,7 +90,7 @@ jobs:
8990
. ./activate && \
9091
pip install --upgrade pip && \
9192
pip install maturin && \
92-
CC=gcc maturin build --no-sdist --release --strip --manylinux 2010 --cargo-extra-args="--features=openssl,libgmp3" \
93+
CC=gcc maturin build --no-sdist --release --strip --manylinux 2010 --cargo-extra-args="--features=openssl,libgmp10" \
9394
'
9495
9596
- name: Build Windows with maturin on Python ${{ matrix.python }}
@@ -236,7 +237,7 @@ jobs:
236237
- name: cargo-fuzz
237238
run: cargo +nightly install cargo-fuzz
238239
- name: build
239-
run: cargo +nightly fuzz build --cargo-extra-args="--features=openssl"
240+
run: cargo +nightly fuzz build
240241

241242
unit_tests:
242243
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)