File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,19 @@ jobs:
3434 environment-name : myenv
3535 environment-file : environment-dev.yml
3636 cache-env : true
37+ extra-specs : |
38+ ninja
3739
3840 - name : Configure using CMake
39- run : cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DPYTHON_EXECUTABLE=`which python` -DDOWNLOAD_GTEST=ON
41+ run : cmake -Bbuild -G "Ninja" - DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DPYTHON_EXECUTABLE=`which python` -DDOWNLOAD_GTEST=ON
4042
4143 - name : Install
4244 working-directory : build
43- run : make install
45+ run : cmake -- install .
4446
4547 - name : Build xtensor-python
4648 working-directory : build
47- run : make test_xtensor_python
49+ run : cmake --build .
4850
4951 - name : Test xtensor-python
5052 working-directory : build/test
You can’t perform that action at this time.
0 commit comments