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

Merge pull request #358 from jcarpent/devel

Fix CI + sync submodule cmake
parents 28e676a6 bf56d284
No related branches found
No related tags found
No related merge requests found
Pipeline #27228 passed with warnings
......@@ -7,7 +7,7 @@ jobs:
name: ${{ matrix.os }} - ${{ matrix.build_type }} ${{ matrix.cxx_options }}
runs-on: ${{ matrix.os }}
env:
CCACHE_DIR: /github/home/.ccache # Enable ccache
CCACHE_DIR: .ccache # Enable ccache
strategy:
fail-fast: false
......@@ -46,7 +46,7 @@ jobs:
shell: bash -l {0}
run: |
conda activate eigenpy
conda install cmake -c main
conda install cmake ccache -c conda-forge
conda list
- name: Build EigenPy
......@@ -58,7 +58,7 @@ jobs:
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$(which python3) -DGENERATE_PYTHON_STUBS=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_FLAGS=${{ matrix.cxx_options }}
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DPYTHON_EXECUTABLE=$(which python3) -DGENERATE_PYTHON_STUBS=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_FLAGS=${{ matrix.cxx_options }}
make
make build_tests
export CTEST_OUTPUT_ON_FAILURE=1
......
Subproject commit 6f76c37d7e2a002b2be138e4a0fb383e3043eb9c
Subproject commit 110a0188d45b0cd01ab0a7c92a2b22e8452d16ea
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