summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-build-windows.yml
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2021-12-17 13:00:32 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2021-12-17 13:00:32 +0100
commitb9a7226a7bac01eb10651851363b87b4d60d84c6 (patch)
tree4ac4b9654a78007f658459f8383c7a02c6c7cc37 /.github/workflows/pip-build-windows.yml
parent66c28bfabb3769dd533dd7baf0b09260726f378e (diff)
try to fix
Diffstat (limited to '.github/workflows/pip-build-windows.yml')
-rw-r--r--.github/workflows/pip-build-windows.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/pip-build-windows.yml b/.github/workflows/pip-build-windows.yml
index c6560b4a..2bbc6f49 100644
--- a/.github/workflows/pip-build-windows.yml
+++ b/.github/workflows/pip-build-windows.yml
@@ -33,16 +33,21 @@ jobs:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=c:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows ..
- cd src/python
+ echo %CD%
+ dir
+ cd src\python
cp c:/vcpkg/installed/x64-windows/bin/mpfr-6.dll gudhi/
cp c:/vcpkg/installed/x64-windows/bin/gmp.dll gudhi/
python setup.py bdist_wheel
ls dist
- name: Install and test python wheel
run: |
- cd ${{ github.workspace }}
- cd build/src/python/dist/
+ echo %CD%
+ dir
+ cd dist
Get-ChildItem *.whl | ForEach-Object{python -m pip install --user $_.Name}
- cd ${{ github.workspace }}
+ cd ..
+ echo %CD%
+ dir
python -m pip install --user pytest
python -m pytest src/python/test/test_alpha_complex.py