From 7b051e3fb0a0ba1b348ff53a060095f9b4dbe7e0 Mon Sep 17 00:00:00 2001 From: mmyjona Date: Thu, 16 Mar 2023 10:23:09 +0800 Subject: [PATCH] add cmake to linux and macos platform --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a068ae75..7d4d8c8a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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