Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Mar 2, 2022
1 parent f3540fb commit 2c7df32
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,19 @@ jobs:
environment-name: myenv
environment-file: environment-dev.yml
cache-env: true
extra-specs: |
ninja
- name: Configure using CMake
run: cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DPYTHON_EXECUTABLE=`which python` -DDOWNLOAD_GTEST=ON
run: cmake -Bbuild -G "Ninja" -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DPYTHON_EXECUTABLE=`which python` -DDOWNLOAD_GTEST=ON

- name: Install
working-directory: build
run: make install
run: cmake --install .

- name: Build xtensor-python
working-directory: build
run: make test_xtensor_python
run: cmake --build .

- name: Test xtensor-python
working-directory: build/test
Expand Down

0 comments on commit 2c7df32

Please sign in to comment.