core: fix SaPCollisionManager::empty() #819
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build hpp-fcl for Mac OS X/Linux via Conda | |
on: [push,pull_request] | |
jobs: | |
hpp-fcl-conda: | |
name: CI on ${{ matrix.os }} with Conda | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-latest"] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: hpp-fcl | |
auto-update-conda: true | |
environment-file: .github/workflows/conda/conda-env.yml | |
python-version: 3.8 | |
- name: Install cmake and update conda | |
shell: bash -l {0} | |
run: | | |
conda activate hpp-fcl | |
conda install cmake -c main | |
conda install llvm-openmp -c conda-forge | |
- name: Build hpp-fcl | |
shell: bash -l {0} | |
run: | | |
conda activate hpp-fcl | |
echo $CONDA_PREFIX | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$(which python3) -DGENERATE_PYTHON_STUBS=ON -DHPP_FCL_HAS_QHULL=ON | |
make -j2 | |
make build_tests | |
export CTEST_OUTPUT_ON_FAILURE=1 | |
make test | |
make install | |
- name: Uninstall hpp-fcl | |
shell: bash -l {0} | |
run: | | |
cd build | |
make uninstall |