From baad8a4bd06b0b3f6ea750bbae976ef700d7fe31 Mon Sep 17 00:00:00 2001 From: Anichitei Ionel-Cristinel <49393881+ianichitei@users.noreply.github.com> Date: Tue, 17 Nov 2020 11:33:55 +0200 Subject: [PATCH] ci: Use CMake when building on Linux --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92df289..deb7cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,12 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build bddisasm and bdshemu - run: make -j$(nproc) + run: | + mkdir build + cd build + cmake .. + make + cd - - name: Install rapidjson uses: actions/checkout@master with: