Skip to content

Commit

Permalink
use pwsh to list build tool dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tangowithfoxtrot authored Nov 21, 2023
1 parent 41b44dc commit 9831906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ jobs:
# ring crate: add Visual Studio Build Tools "VS 2022 C++ ARM64 build tools" and "clang" components
$env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin"
echo 'Output PowerShell PATH'
pwsh -c '$env:Path'
$env:Path
echo 'Checking if build tools exist'
bash -c 'ls -halR 'C:\Program Files *\Microsoft Visual Studio''
Get-ChildItem -Recurse "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin"
exit 1 # fail because we are testing
- name: Build wheels
Expand Down

0 comments on commit 9831906

Please sign in to comment.