There was an error while loading. Please reload this page.
1 parent 9343a42 commit 4fdb96eCopy full SHA for 4fdb96e
1 file changed
.github/workflows/build.yml
@@ -21,18 +21,17 @@ jobs:
21
key: ${{ matrix.os }}
22
23
- name: Configure
24
- run: CXXFLAGS=-fPIC CXX="ccache c++" ./configure
+ run: |
25
+ cmake -S . -B build \
26
+ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
27
+ -DCMAKE_BUILD_TYPE=Release
28
29
- name: Build
- run: make -j8
-
- - name: Smoke test
30
- run: build/cadical --help
+ run: cmake --build build -j8
31
32
- name: Upload artifacts
33
uses: actions/upload-artifact@v4
34
with:
35
name: cadical-libs-${{ matrix.os }}
36
path: |
37
build/libcadical.a
38
- build/libcadical.so
0 commit comments