Browse Source

Work around different venv folder on Windows

tags/v0.3.4-rc1
Philipp Oppermann 1 year ago
parent
commit
fe4006a878
Failed to extract signature
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      .github/workflows/ci.yml

+ 3
- 0
.github/workflows/ci.yml View File

@@ -279,6 +279,9 @@ jobs:
run: |
# Test Python template Project
python3 -m venv .venv
if [ ! -d ".venv/bin" ]; then
mv .venv/Scripts .venv/bin # venv is placed under `Scripts` on Windows
fi
source .venv/bin/activate
pip3 install maturin
maturin build -m apis/python/node/Cargo.toml


Loading…
Cancel
Save