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:
29
29
environment-file : dev-environment.yml
30
30
cache-environment : true
31
31
32
- - name : Build
32
+ - name : Configure CMake
33
33
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
37
39
38
40
- name : Smoke test
39
41
working-directory : build
45
47
run : |
46
48
pytest -v
47
49
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:
13
13
``` bash
14
14
micromamba create -f dev-environment.yml
15
15
micromamba activate git2cpp-dev
16
- meson setup build
16
+ cmake -Bbuild $CMAKE_INSALL_PREFIX = $CONDA_PREFIX
17
17
cd build
18
- meson compile
18
+ make -j8
19
19
```
20
20
21
21
The ` 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