Skip to content

Commit

Permalink
Work around different venv folder on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Apr 28, 2024
1 parent 821ff2e commit f8fbabc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8fbabc

Please sign in to comment.