Skip to content
Snippets Groups Projects
Unverified Commit a59f9d31 authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #298 from nim65s/devel

ci: test packaging
parents 9f4a4148 2686f5d5
No related branches found
No related tags found
No related merge requests found
Pipeline #20653 passed with warnings
......@@ -53,6 +53,13 @@ jobs:
make test
make install
- name: Test packaging
shell: bash -l {0}
run: |
conda activate eigenpy
cmake -B test-packaging -S unittest/packaging/cmake -DPYTHON_EXECUTABLE=$(which python3)
- name: Configure hpp-fcl
shell: bash -l {0}
run: |
......
......@@ -66,6 +66,13 @@ jobs:
if errorlevel 1 exit 1
:: Test packaging
cmake -B test-packaging -S unittest/packaging/cmake ^
-G "NMake Makefiles" ^
-DPYTHON_EXECUTABLE=%CONDA_PREFIX%\python.exe
if errorlevel 1 exit 1
:: Configure hpp-fcl
conda install -c conda-forge octomap assimp qhull
git clone --recursive https://github.com/humanoid-path-planner/hpp-fcl.git
pushd hpp-fcl
......
Subproject commit e319590e7c73bbe22b86108031722a134d13349b
Subproject commit 6c40c9d426410bb25ff511e809192b7dedb4031c
......@@ -2,8 +2,6 @@ cmake_minimum_required(VERSION 2.6)
project(ExtraLib CXX)
find_package(eigenpy REQUIRED)
find_package(PythonInterp REQUIRED)
find_package(PythonLibs REQUIRED)
add_executable(extra_lib extra_lib.cpp)
target_link_libraries(extra_lib PUBLIC eigenpy::eigenpy ${PYTHON_LIBRARIES})
target_link_libraries(extra_lib PUBLIC eigenpy::eigenpy)
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