ci: Setup python venv for cargo-zigbuild

This commit is contained in:
Luke Street 2024-10-10 22:37:55 -06:00
parent 2e524e6806
commit 601c8e1a5e
1 changed files with 5 additions and 1 deletions

View File

@ -129,7 +129,11 @@ jobs:
sudo apt-get -y install ${{ matrix.packages }}
- name: Install cargo-zigbuild
if: matrix.build == 'zigbuild'
run: pip install ziglang==0.13.0 cargo-zigbuild==0.19.1
run: |
python3 -m venv .venv
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
pip install ziglang==0.13.0 cargo-zigbuild==0.19.1
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with: