Skip to content

Commit

Permalink
bad path
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentRouvreau committed Apr 7, 2023
1 parent 84cbd93 commit d520468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pip-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release -DFORCE_EIGEN_DEFAULT_DENSE_INDEX_TYPE_TO_INT=ON -DCMAKE_TOOLCHAIN_FILE=c:\vcpkg\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows ..
cd ".\src\python\"
python -m build -n
ls ".\dist\"
cd ".\dist\"
Get-ChildItem *.whl | ForEach-Object{python -m delvewheel show $_.Name --add-path="C:\vcpkg\installed\x64-windows\bin\"}
Get-ChildItem *.whl | ForEach-Object{python -m delvewheel repair $_.Name --add-path="C:\vcpkg\installed\x64-windows\bin\"}
Get-ChildItem *.whl | ForEach-Object{python -m pip install --user $_.Name}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pip-packaging-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release -DFORCE_EIGEN_DEFAULT_DENSE_INDEX_TYPE_TO_INT=ON -DCMAKE_TOOLCHAIN_FILE=c:\vcpkg\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows ..
cd ".\src\python\"
python -m build -n
ls ".\dist\"
cd ".\dist\"
Get-ChildItem *.whl | ForEach-Object{python -m delvewheel show $_.Name --add-path="C:\vcpkg\installed\x64-windows\bin\"}
Get-ChildItem *.whl | ForEach-Object{python -m delvewheel repair $_.Name --add-path="C:\vcpkg\installed\x64-windows\bin\"}
Get-ChildItem *.whl | ForEach-Object{python -m pip install --user $_.Name}
Expand Down

0 comments on commit d520468

Please sign in to comment.