We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3540fb commit 2c7df32Copy full SHA for 2c7df32
.github/workflows/ci.yml
@@ -34,17 +34,19 @@ jobs:
34
environment-name: myenv
35
environment-file: environment-dev.yml
36
cache-env: true
37
+ extra-specs: |
38
+ ninja
39
40
- name: Configure using CMake
- 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
42
43
- name: Install
44
working-directory: build
- run: make install
45
+ run: cmake --install .
46
47
- name: Build xtensor-python
48
- run: make test_xtensor_python
49
+ run: cmake --build .
50
51
- name: Test xtensor-python
52
working-directory: build/test
0 commit comments