Skip to content

Commit

Permalink
wheel testing in venv
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Sep 7, 2023
1 parent a3da4ab commit 2c387bf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-riscv64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@ jobs:
riscv64/debian:rc-buggy \
bash -exc '\
apt-get update && \
apt-get install -y cmake build-essential git python3 python3-dev python3-pip libgmp-dev libboost-dev && \
apt-get install -y cmake build-essential git python3-full python3-dev python3-pip libgmp-dev libboost-dev && \
cmake --version && \
uname -a && \
export BUILD_VDF_CLIENT=N && \
pip wheel -w dist . && \
pip install dist/*.whl && \
python3 -m pytest -v tests/ \
python3 -m venv venv && \
./venv/bin/python -m pip install dist/*.whl && \
./venv/bin/python -m python -b tests/
'
- name: Upload artifacts
Expand Down

0 comments on commit 2c387bf

Please sign in to comment.