Skip to content
Snippets Groups Projects
Verified Commit 4d623f17 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

ci: test packaging on windows

parent 7188bf56
No related branches found
No related tags found
No related merge requests found
Pipeline #20625 passed with warnings
...@@ -64,3 +64,21 @@ jobs: ...@@ -64,3 +64,21 @@ jobs:
cd .. cd ..
python -c "import eigenpy" python -c "import eigenpy"
if errorlevel 1 exit 1 if errorlevel 1 exit 1
:: Test packaging
git clone --recursive https://github.com/humanoid-path-planner/hpp-fcl.git
pushd hpp-fcl
mkdir build
pushd build
cmake ^
-G "NMake Makefiles" ^
-DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX%\Library ^
-DCMAKE_BUILD_TYPE=Release ^
-DPYTHON_EXECUTABLE=%CONDA_PREFIX%\python.exe ^
..
cd ..
if errorlevel 1 exit 1
:: Uninstall
cmake --build . --config Release --target uninstall
if errorlevel 1 exit 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment