Skip to content

Commit 2c7df32

Browse files
committed
debugging
1 parent f3540fb commit 2c7df32

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)