File tree Expand file tree Collapse file tree 6 files changed +8
-52
lines changed Expand file tree Collapse file tree 6 files changed +8
-52
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,13 @@ jobs:
2929 environment-file : dev-environment.yml
3030 cache-environment : true
3131
32- - name : Build
32+ - name : Configure CMake
3333 run : |
34- meson setup build
35- cd build
36- meson compile
34+ cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
35+
36+ - name : Build with CMake
37+ working-directory : build
38+ run : cmake --build . --parallel 8
3739
3840 - name : Smoke test
3941 working-directory : build
4547 run : |
4648 pytest -v
4749
48- - name : Configure CMake
49- run : |
50- cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
51-
52- - name : Build with CMake
53- working-directory : build
54- run : cmake --build . --parallel 8
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ Developer's workflow using `micromamba` to manage the dependencies:
1313``` bash
1414micromamba create -f dev-environment.yml
1515micromamba activate git2cpp-dev
16- meson setup build
16+ cmake -Bbuild $CMAKE_INSALL_PREFIX = $CONDA_PREFIX
1717cd build
18- meson compile
18+ make -j8
1919```
2020
2121The ` git2cpp ` executable can then be run, e.g. ` ./git2cpp -v ` .
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments