Skip to content

Commit

Permalink
Try running venv activate and passing PATH in GITHUB_ENV.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCallow committed Oct 7, 2024
1 parent 4cf0528 commit 83785e0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,13 @@ jobs:
# Without this, venv stopped working in 20240929.1 runner.
- name: Install Python virtualenv
if: matrix.options.py == 'ON' && matrix.check_mkvk != 'ONLY'
run: pipx install virtualenv
# . .venv/bin/activate
# echo PATH=$PATH >> $GITHUB_ENV
run: |
echo $env:PATH
pipx install virtualenv
echo $env:PATH
. .venv/bin/activate
echo $env:PATH
echo $env:PATH >> $GITHUB_ENV
- name: Init CTS submodule
if: matrix.options.tools_cts =='ON'
Expand Down

0 comments on commit 83785e0

Please sign in to comment.