add cmake to linux and macos platform

This commit is contained in:
mmyjona 2023-03-16 10:23:09 +08:00
parent fdb1987f6f
commit 7b051e3fb0
No known key found for this signature in database

View file

@ -17,6 +17,10 @@ jobs:
- name: Build
run: |
make
mkdir build
cd build
cmake ..
cmake --build . --config Release
macOS-latest:
runs-on: macOS-latest
@ -32,6 +36,10 @@ jobs:
- name: Build
run: |
make
mkdir build
cd build
cmake ..
cmake --build . --config Release
windows-latest:
runs-on: windows-latest