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:
34
34
environment-name : myenv
35
35
environment-file : environment-dev.yml
36
36
cache-env : true
37
+ extra-specs : |
38
+ ninja
37
39
38
40
- 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
40
42
41
43
- name : Install
42
44
working-directory : build
43
- run : make install
45
+ run : cmake -- install .
44
46
45
47
- name : Build xtensor-python
46
48
working-directory : build
47
- run : make test_xtensor_python
49
+ run : cmake --build .
48
50
49
51
- name : Test xtensor-python
50
52
working-directory : build/test
You can’t perform that action at this time.
0 commit comments